commit a9df923a22e771b8ba02609154e844cb2215614a
parent 0295e6c095d8354ab6004eead9e54ac2187c0016
Author: Mark Banner <standard8@mozilla.com>
Date: Mon, 20 Oct 2025 21:22:39 +0000
Bug 1995262 - Add a preference for the new online suggest. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D269197
Diffstat:
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
@@ -505,6 +505,16 @@ pref("browser.urlbar.suggest.quicksuggest.sponsored", false, sticky);
// with their various default-branch values, the user is enrolled in over time.
pref("browser.urlbar.quicksuggest.dataCollection.enabled", false, sticky);
+// Whether quick suggest retrives online suggestions from Merino via Oblivious
+// HTTP (OHTTP). This functionality is being enabled in a future release. Note,
+// that even if this is preference enabled, the feature may not be available
+// - there are other prefs that control if the feature is available or not.
+// When the feature is enabled, the pref will also be exposed to the user in the
+// UI and it's sticky so that its user-branch value persists regardless of
+// whatever Firefox Suggest scenarios, with their various default-brnch values,
+// the user is enrolled in over time.
+pref("browser.urlbar.quicksuggest.online.enabled", true, sticky);
+
// Whether the Firefox Suggest contextual opt-in result is enabled.
pref("browser.urlbar.quicksuggest.contextualOptIn", false);