Bug 1790100 - Enable cookie banner handling by default in Nightly in private browsing mode. r=timhuang

Differential Revision: https://phabricator.services.mozilla.com/D157676
This commit is contained in:
Paul Zuehlcke 2022-09-28 17:06:39 +00:00
parent 75672c3505
commit 06a19eb62b

View File

@ -2722,3 +2722,10 @@ pref("browser.places.snapshots.expiration.userManaged.days", 420);
pref("browser.firefox-view.feature-tour", "{\"message\":\"FIREFOX_VIEW_FEATURE_TOUR\",\"screen\":\"FIREFOX_VIEW_SPOTLIGHT\",\"complete\":false}");
// Number of times the user visited about:firefoxview
pref("browser.firefox-view.view-count", 0);
// Enables cookie banner handling in Nightly in Private Browsing Mode. See
// StaticPrefList.yaml for a description of the prefs.
#ifdef NIGHTLY_BUILD
pref("cookiebanners.service.mode.privateBrowsing", 1);
pref("cookiebanners.bannerClicking.enabled", true);
#endif