| OLD | NEW |
| 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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 // The mode of home provider syncing. | 877 // The mode of home provider syncing. |
| 878 // 0: Sync always | 878 // 0: Sync always |
| 879 // 1: Sync only when on wifi | 879 // 1: Sync only when on wifi |
| 880 pref("home.sync.updateMode", 0); | 880 pref("home.sync.updateMode", 0); |
| 881 | 881 |
| 882 // How frequently to check if we should sync home provider data. | 882 // How frequently to check if we should sync home provider data. |
| 883 pref("home.sync.checkIntervalSecs", 3600); | 883 pref("home.sync.checkIntervalSecs", 3600); |
| 884 | 884 |
| 885 // Enable device storage API | 885 // Enable device storage API |
| 886 pref("device.storage.enabled", true); | 886 pref("device.storage.enabled", true); |
| 887 |
| 888 // Suppress the first run page of Adblock Plus in Adblock Browser. |
| 889 pref("extensions.adblockplus.preconfigured.suppress_first_run_page", true); |
| OLD | NEW |