| LEFT | RIGHT |
| 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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 // How frequently we check for new snippets, in seconds (1 day) | 832 // How frequently we check for new snippets, in seconds (1 day) |
| 833 pref("browser.snippets.updateInterval", 86400); | 833 pref("browser.snippets.updateInterval", 86400); |
| 834 | 834 |
| 835 // URL used to check for user's country code | 835 // URL used to check for user's country code |
| 836 pref("browser.snippets.geoUrl", "https://geo.mozilla.org/country.json"); | 836 pref("browser.snippets.geoUrl", "https://geo.mozilla.org/country.json"); |
| 837 | 837 |
| 838 // URL used to ping metrics with stats about which snippets have been shown | 838 // URL used to ping metrics with stats about which snippets have been shown |
| 839 pref("browser.snippets.statsUrl", "https://snippets-stats.mozilla.org/mobile"); | 839 pref("browser.snippets.statsUrl", "https://snippets-stats.mozilla.org/mobile"); |
| 840 | 840 |
| 841 // These prefs require a restart to take effect. | 841 // These prefs require a restart to take effect. |
| 842 // We don't want to see any snippets in Adblock Browser for now. | |
| 843 pref("browser.snippets.enabled", false); | 842 pref("browser.snippets.enabled", false); |
| 844 pref("browser.snippets.syncPromo.enabled", false); | 843 pref("browser.snippets.syncPromo.enabled", false); |
| 845 pref("browser.snippets.firstrunHomepage.enabled", false); | 844 pref("browser.snippets.firstrunHomepage.enabled", false); |
| 846 | 845 |
| 847 // The URL of the APK factory from which we obtain APKs for webapps. | 846 // The URL of the APK factory from which we obtain APKs for webapps. |
| 848 pref("browser.webapps.apkFactoryUrl", "https://controller.apk.firefox.com/applic
ation.apk"); | 847 pref("browser.webapps.apkFactoryUrl", "https://controller.apk.firefox.com/applic
ation.apk"); |
| 849 | 848 |
| 850 // How frequently to check for webapp updates, in seconds (86400 is daily). | 849 // How frequently to check for webapp updates, in seconds (86400 is daily). |
| 851 pref("browser.webapps.updateInterval", 86400); | 850 pref("browser.webapps.updateInterval", 86400); |
| 852 | 851 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 871 // The mode of home provider syncing. | 870 // The mode of home provider syncing. |
| 872 // 0: Sync always | 871 // 0: Sync always |
| 873 // 1: Sync only when on wifi | 872 // 1: Sync only when on wifi |
| 874 pref("home.sync.updateMode", 0); | 873 pref("home.sync.updateMode", 0); |
| 875 | 874 |
| 876 // How frequently to check if we should sync home provider data. | 875 // How frequently to check if we should sync home provider data. |
| 877 pref("home.sync.checkIntervalSecs", 3600); | 876 pref("home.sync.checkIntervalSecs", 3600); |
| 878 | 877 |
| 879 // Enable device storage API | 878 // Enable device storage API |
| 880 pref("device.storage.enabled", true); | 879 pref("device.storage.enabled", true); |
| LEFT | RIGHT |