Port Bug 1516044 - Add search hand-off pref to firefox.js r=andreio

This commit is contained in:
Ricky Rosario 2019-01-11 09:11:03 -05:00 коммит произвёл Ed Lee
Родитель 0c64776c24
Коммит 315d3baa1c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 40B7250312F03605
2 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -193,10 +193,6 @@ const PREFS_CONFIG = new Map([
title: "A comma-delimited list of search shortcuts that have previously been pinned",
value: "",
}],
["improvesearch.handoffToAwesomebar", {
title: "Should the search box handoff to the Awesomebar?",
value: true,
}],
["asrouter.devtoolsEnabled", {
title: "Are the asrouter devtools enabled?",
value: false,

Просмотреть файл

@ -93,6 +93,13 @@ this.PrefsFeed = class PrefsFeed {
values["improvesearch.topSiteSearchShortcuts"] = searchTopSiteExperimentPrefValue;
this._prefMap.set("improvesearch.topSiteSearchShortcuts", searchTopSiteExperimentPrefValue);
// Read the pref for search hand-off from firefox.js and store it
// in our interal list of prefs to watch
let handoffToAwesomebarPrefValue = Services.prefs.getBoolPref(
"browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar");
values["improvesearch.handoffToAwesomebar"] = handoffToAwesomebarPrefValue;
this._prefMap.set("improvesearch.handoffToAwesomebar", handoffToAwesomebarPrefValue);
// Set the initial state of all prefs in redux
this.store.dispatch(ac.BroadcastToContent({type: at.PREFS_INITIAL_VALUES, data: values}));