Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/libpref/init/all.js

Issue 29370606: Issue 4765 - Change minimum compatible versions (Closed)
Patch Set: Created Jan. 2, 2017, 3:21 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mobile/android/app/mobile.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ 1 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public 2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 5
6 /* The prefs in this file are shipped with the GRE and should apply to all 6 /* The prefs in this file are shipped with the GRE and should apply to all
7 * embedding situations. Application-specific preferences belong somewhere else, 7 * embedding situations. Application-specific preferences belong somewhere else,
8 * for example xpfe/bootstrap/browser-prefs.js 8 * for example xpfe/bootstrap/browser-prefs.js
9 * 9 *
10 * Platform-specific #ifdefs at the end of this file override the generic 10 * Platform-specific #ifdefs at the end of this file override the generic
(...skipping 4376 matching lines...) Expand 10 before | Expand all | Expand 10 after
4387 pref("browser.history.allowPushState", true); 4387 pref("browser.history.allowPushState", true);
4388 pref("browser.history.allowReplaceState", true); 4388 pref("browser.history.allowReplaceState", true);
4389 pref("browser.history.allowPopState", true); 4389 pref("browser.history.allowPopState", true);
4390 pref("browser.history.maxStateObjectSize", 655360); 4390 pref("browser.history.maxStateObjectSize", 655360);
4391 4391
4392 // XPInstall prefs 4392 // XPInstall prefs
4393 pref("xpinstall.whitelist.required", true); 4393 pref("xpinstall.whitelist.required", true);
4394 // Only Firefox requires add-on signatures 4394 // Only Firefox requires add-on signatures
4395 pref("xpinstall.signatures.required", false); 4395 pref("xpinstall.signatures.required", false);
4396 pref("extensions.alwaysUnpack", false); 4396 pref("extensions.alwaysUnpack", false);
4397 pref("extensions.minCompatiblePlatformVersion", "2.0"); 4397 // Changed min compat version. See https://issues.adblockplus.org/ticket/4765
4398 pref("extensions.minCompatiblePlatformVersion", "1.0");
4398 4399
4399 pref("network.buffer.cache.count", 24); 4400 pref("network.buffer.cache.count", 24);
4400 pref("network.buffer.cache.size", 32768); 4401 pref("network.buffer.cache.size", 32768);
4401 4402
4402 // Desktop Notification 4403 // Desktop Notification
4403 pref("notification.feature.enabled", false); 4404 pref("notification.feature.enabled", false);
4404 4405
4405 // Web Notification 4406 // Web Notification
4406 pref("dom.webnotifications.enabled", true); 4407 pref("dom.webnotifications.enabled", true);
4407 #if !defined(RELEASE_BUILD) 4408 #if !defined(RELEASE_BUILD)
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
5106 pref("dom.requestcache.enabled", false); 5107 pref("dom.requestcache.enabled", false);
5107 5108
5108 // Expose Request.context. Currently disabled since the spec is in flux. 5109 // Expose Request.context. Currently disabled since the spec is in flux.
5109 pref("dom.requestcontext.enabled", false); 5110 pref("dom.requestcontext.enabled", false);
5110 5111
5111 pref("dom.mozKillSwitch.enabled", false); 5112 pref("dom.mozKillSwitch.enabled", false);
5112 5113
5113 pref("toolkit.pageThumbs.screenSizeDivisor", 7); 5114 pref("toolkit.pageThumbs.screenSizeDivisor", 7);
5114 pref("toolkit.pageThumbs.minWidth", 0); 5115 pref("toolkit.pageThumbs.minWidth", 0);
5115 pref("toolkit.pageThumbs.minHeight", 0); 5116 pref("toolkit.pageThumbs.minHeight", 0);
OLDNEW
« no previous file with comments | « mobile/android/app/mobile.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld