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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
805 // How frequently we check for new snippets, in seconds (1 day) | 805 // How frequently we check for new snippets, in seconds (1 day) |
806 pref("browser.snippets.updateInterval", 86400); | 806 pref("browser.snippets.updateInterval", 86400); |
807 | 807 |
808 // URL used to check for user's country code | 808 // URL used to check for user's country code |
809 pref("browser.snippets.geoUrl", "https://geo.mozilla.org/country.json"); | 809 pref("browser.snippets.geoUrl", "https://geo.mozilla.org/country.json"); |
810 | 810 |
811 // URL used to ping metrics with stats about which snippets have been shown | 811 // URL used to ping metrics with stats about which snippets have been shown |
812 pref("browser.snippets.statsUrl", "https://snippets-stats.mozilla.org/mobile"); | 812 pref("browser.snippets.statsUrl", "https://snippets-stats.mozilla.org/mobile"); |
813 | 813 |
814 // These prefs require a restart to take effect. | 814 // These prefs require a restart to take effect. |
815 pref("browser.snippets.enabled", true); | 815 pref("browser.snippets.enabled", false); |
816 pref("browser.snippets.syncPromo.enabled", true); | 816 pref("browser.snippets.syncPromo.enabled", false); |
817 pref("browser.snippets.firstrunHomepage.enabled", true); | 817 pref("browser.snippets.firstrunHomepage.enabled", false); |
818 | 818 |
819 // The URL of the APK factory from which we obtain APKs for webapps. | 819 // The URL of the APK factory from which we obtain APKs for webapps. |
820 pref("browser.webapps.apkFactoryUrl", "https://controller.apk.firefox.com/applic
ation.apk"); | 820 pref("browser.webapps.apkFactoryUrl", "https://controller.apk.firefox.com/applic
ation.apk"); |
821 | 821 |
822 // How frequently to check for webapp updates, in seconds (86400 is daily). | 822 // How frequently to check for webapp updates, in seconds (86400 is daily). |
823 pref("browser.webapps.updateInterval", 86400); | 823 pref("browser.webapps.updateInterval", 86400); |
824 | 824 |
825 // Whether or not to check for updates. Enabled by default, but the runtime | 825 // Whether or not to check for updates. Enabled by default, but the runtime |
826 // disables it for webapp profiles on firstrun, so only the main Fennec process | 826 // disables it for webapp profiles on firstrun, so only the main Fennec process |
827 // checks for updates (to avoid duplicate update notifications). | 827 // checks for updates (to avoid duplicate update notifications). |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
873 | 873 |
874 // Whether or not to display buttons related to reading list in reader view. | 874 // Whether or not to display buttons related to reading list in reader view. |
875 pref("browser.readinglist.enabled", true); | 875 pref("browser.readinglist.enabled", true); |
876 | 876 |
877 // Disable sending console to logcat on release builds. | 877 // Disable sending console to logcat on release builds. |
878 #ifdef RELEASE_BUILD | 878 #ifdef RELEASE_BUILD |
879 pref("consoleservice.logcat", false); | 879 pref("consoleservice.logcat", false); |
880 #else | 880 #else |
881 pref("consoleservice.logcat", true); | 881 pref("consoleservice.logcat", true); |
882 #endif | 882 #endif |
OLD | NEW |