LEFT | RIGHT |
(no file at all) | |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #filter substitution | 5 #filter substitution |
6 | 6 |
7 // For browser.xml binding | 7 // For browser.xml binding |
8 // | 8 // |
9 // cacheRatio* is a ratio that determines the amount of pixels to cache. The | 9 // cacheRatio* is a ratio that determines the amount of pixels to cache. The |
10 // ratio is multiplied by the viewport width or height to get the displayport's | 10 // ratio is multiplied by the viewport width or height to get the displayport's |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 /* new html5 forms */ | 169 /* new html5 forms */ |
170 pref("dom.experimental_forms", true); | 170 pref("dom.experimental_forms", true); |
171 pref("dom.forms.number", true); | 171 pref("dom.forms.number", true); |
172 | 172 |
173 /* extension manager and xpinstall */ | 173 /* extension manager and xpinstall */ |
174 pref("xpinstall.whitelist.directRequest", false); | 174 pref("xpinstall.whitelist.directRequest", false); |
175 pref("xpinstall.whitelist.fileRequest", false); | 175 pref("xpinstall.whitelist.fileRequest", false); |
176 pref("xpinstall.whitelist.add", "addons.mozilla.org"); | 176 pref("xpinstall.whitelist.add", "addons.mozilla.org"); |
177 pref("xpinstall.whitelist.add.180", "marketplace.firefox.com"); | 177 pref("xpinstall.whitelist.add.180", "marketplace.firefox.com"); |
178 | 178 |
179 pref("extensions.enabledScopes", 1); | 179 pref("extensions.enabledScopes", 4); |
180 pref("extensions.autoupdate.enabled", true); | 180 pref("extensions.autoupdate.enabled", true); |
181 pref("extensions.autoupdate.interval", 86400); | 181 pref("extensions.autoupdate.interval", 86400); |
182 pref("extensions.update.enabled", false); | 182 pref("extensions.update.enabled", false); |
183 pref("extensions.update.interval", 86400); | 183 pref("extensions.update.interval", 86400); |
184 pref("extensions.dss.enabled", false); | 184 pref("extensions.dss.enabled", false); |
185 pref("extensions.dss.switchPending", false); | 185 pref("extensions.dss.switchPending", false); |
186 pref("extensions.ignoreMTimeChanges", false); | 186 pref("extensions.ignoreMTimeChanges", false); |
187 pref("extensions.logging.enabled", false); | 187 pref("extensions.logging.enabled", false); |
188 pref("extensions.hideInstallButton", true); | 188 pref("extensions.hideInstallButton", true); |
189 pref("extensions.showMismatchUI", false); | 189 pref("extensions.showMismatchUI", false); |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
870 // The mode of home provider syncing. | 870 // The mode of home provider syncing. |
871 // 0: Sync always | 871 // 0: Sync always |
872 // 1: Sync only when on wifi | 872 // 1: Sync only when on wifi |
873 pref("home.sync.updateMode", 0); | 873 pref("home.sync.updateMode", 0); |
874 | 874 |
875 // How frequently to check if we should sync home provider data. | 875 // How frequently to check if we should sync home provider data. |
876 pref("home.sync.checkIntervalSecs", 3600); | 876 pref("home.sync.checkIntervalSecs", 3600); |
877 | 877 |
878 // Enable device storage API | 878 // Enable device storage API |
879 pref("device.storage.enabled", true); | 879 pref("device.storage.enabled", true); |
LEFT | RIGHT |