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

Side by Side Diff: mobile/android/app/mobile.js

Issue 29322720: Issue 2785 - Remove 'tap here to learn more's (Closed)
Patch Set: Added _the_ comment Created July 21, 2015, 8:53 a.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 | « no previous file | 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 /* 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
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 // We set the following three prefs to 'false', see https://issues.adblockplus.o rg/ticket/2785
816 pref("browser.snippets.syncPromo.enabled", true); 816 pref("browser.snippets.enabled", false);
817 pref("browser.snippets.firstrunHomepage.enabled", true); 817 pref("browser.snippets.syncPromo.enabled", false);
818 pref("browser.snippets.firstrunHomepage.enabled", false);
818 819
819 // The URL of the APK factory from which we obtain APKs for webapps. 820 // 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"); 821 pref("browser.webapps.apkFactoryUrl", "https://controller.apk.firefox.com/applic ation.apk");
821 822
822 // How frequently to check for webapp updates, in seconds (86400 is daily). 823 // How frequently to check for webapp updates, in seconds (86400 is daily).
823 pref("browser.webapps.updateInterval", 86400); 824 pref("browser.webapps.updateInterval", 86400);
824 825
825 // Whether or not to check for updates. Enabled by default, but the runtime 826 // 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 827 // disables it for webapp profiles on firstrun, so only the main Fennec process
827 // checks for updates (to avoid duplicate update notifications). 828 // checks for updates (to avoid duplicate update notifications).
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 874
874 // Whether or not to display buttons related to reading list in reader view. 875 // Whether or not to display buttons related to reading list in reader view.
875 pref("browser.readinglist.enabled", true); 876 pref("browser.readinglist.enabled", true);
876 877
877 // Disable sending console to logcat on release builds. 878 // Disable sending console to logcat on release builds.
878 #ifdef RELEASE_BUILD 879 #ifdef RELEASE_BUILD
879 pref("consoleservice.logcat", false); 880 pref("consoleservice.logcat", false);
880 #else 881 #else
881 pref("consoleservice.logcat", true); 882 pref("consoleservice.logcat", true);
882 #endif 883 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld