From 8e891db9c2c4ee8aea8e506ea4fe504ae5af0693 Mon Sep 17 00:00:00 2001 From: Natalia Csoregi Date: Mon, 11 Mar 2024 17:19:37 +0200 Subject: [PATCH] Backed out changeset 6901b5e67c87 (bug 1884442) for causing geckoview failures on TranslationsTest. CLOSED TREE --- .../src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java index fb65796f961e..27bcba80f997 100644 --- a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java +++ b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntimeSettings.java @@ -623,8 +623,8 @@ public final class GeckoRuntimeSettings extends RuntimeSettings { new Pref<>("browser.ui.zoom.force-user-scalable", false); /* package */ final Pref mAutofillLogins = new Pref("signon.autofillForms", true); - /* package */ final PrefWithoutDefault mAutomaticallyOfferPopup = - new PrefWithoutDefault("browser.translations.automaticallyPopup"); + /* package */ final Pref mAutomaticallyOfferPopup = + new Pref("browser.translations.automaticallyPopup", true); /* package */ final Pref mHttpsOnly = new Pref("dom.security.https_only_mode", false); /* package */ final Pref mHttpsOnlyPrivateMode = -- 2.11.4.GIT