Bug 1369824 - Pref Screenshots off in beta and release; r?Standard8 draft
authorJared Hirsch <ohai@6a68.net>
Fri, 02 Jun 2017 11:33:58 -0700
changeset 590462 ddd8f00c37c414d8d69fc32ec4cd884d4ea7b3d1
parent 588345 87c745019518b1d6cd782534f2553721e5735657
child 632262 93dffb4467f0ad6945ecba853a80a57a01e7d90c
push id62782
push userbmo:jhirsch@mozilla.com
push dateWed, 07 Jun 2017 21:58:19 +0000
reviewersStandard8
bugs1369824
milestone55.0a1
Bug 1369824 - Pref Screenshots off in beta and release; r?Standard8 MozReview-Commit-ID: 1QQKhcY1DNw
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -1671,8 +1671,19 @@ pref("browser.sessionstore.restore_tabs_
 pref("urlclassifier.malwareTable", "goog-malware-shavar,goog-unwanted-shavar,goog-malware-proto,goog-unwanted-proto,test-malware-simple,test-unwanted-simple");
 pref("urlclassifier.phishTable", "goog-phish-shavar,goog-phish-proto,test-phish-simple");
 #endif
 
 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);