Bug 1381953 - Enable the new preferences organization for Firefox 56. r?mconley draft
authorJared Wein <jwein@mozilla.com>
Mon, 31 Jul 2017 18:05:10 -0400
changeset 618728 609eab00bcbed87d961b2bdf75d995a51d140e72
parent 618680 48fd560b36a2ac57c48c0334df58d5d9232f9790
child 640163 242df7d62a0db6bc1c4431601b1a0acee5bcabe6
push id71434
push userbmo:jaws@mozilla.com
push dateTue, 01 Aug 2017 00:29:56 +0000
reviewersmconley
bugs1381953
milestone56.0a1
Bug 1381953 - Enable the new preferences organization for Firefox 56. r?mconley Support for browser.preferences.useOldOrganization will be removed later towards the end of the 56 beta cycle when we are sure that there are no late-breaking issues that will cause us to hold back on shipping the new preferences. MozReview-Commit-ID: 6EWbWJNnbIQ
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -725,21 +725,17 @@ pref("browser.preferences.instantApply",
 #else
 pref("browser.preferences.instantApply", true);
 #endif
 
 // Toggling Search bar on and off in about:preferences
 pref("browser.preferences.search", true);
 
 // Use the new in-content about:preferences in Nightly only for now
-#if defined(NIGHTLY_BUILD)
 pref("browser.preferences.useOldOrganization", false);
-#else
-pref("browser.preferences.useOldOrganization", true);
-#endif
 
 // Once the Storage Management is completed.
 // (The Storage Management-related prefs are browser.storageManager.* )
 // The Offline(Appcache) Group section in about:preferences will be hidden.
 // And the task to clear appcache will be done by Storage Management.
 #if defined(NIGHTLY_BUILD)
 pref("browser.preferences.offlineGroup.enabled", false);
 #else