Bug 1369824 - Pref Screenshots off in beta and release; r=standard8

MozReview-Commit-ID: 1QQKhcY1DNw

--HG--
extra : rebase_source : 92ce033a5d2629b8ab57884cb24ab1a546d9d6ea
This commit is contained in:
Jared Hirsch 2017-06-02 11:33:58 -07:00
parent 5f46f56cb9
commit 9a10208a4d

View File

@ -1679,3 +1679,14 @@ pref("browser.suppress_first_window_animation", true);
// Preferences for Photon onboarding system extension
pref("browser.onboarding.enabled", true);
// Preferences for the Screenshots feature:
// Temporarily disable Screenshots in Beta & Release, so that we can gradually
// roll out the feature using SHIELD pref flipping.
#ifdef NIGHTLY_BUILD
pref("extensions.screenshots.system-disabled", false);
#else
pref("extensions.screenshots.system-disabled", true);
#endif
// Permanent pref that allows individual users to disable Screenshots.
pref("extensions.screenshots.disabled", false);