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

Delta Between Two Patch Sets: mobile/android/app/mobile.js

Issue 6203978345873408: Disable add-on compatibility checking (Closed)
Left Patch Set: Created March 1, 2015, 6:53 a.m.
Right Patch Set: Add comment Created March 1, 2015, 12:10 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
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);
190 pref("extensions.hideUpdateButton", false); 190 pref("extensions.hideUpdateButton", false);
191 pref("extensions.strictCompatibility", false); 191 pref("extensions.strictCompatibility", false);
192 pref("extensions.minCompatibleAppVersion", "11.0"); 192 pref("extensions.minCompatibleAppVersion", "11.0");
193
194 // We need to disable compatibility checking in Adblock Browser for now,
195 // since it uses different versions than Firefox, and we don't want to modify
196 // the embedded Adblock Plus at this point. In the future, Adblock Browser
197 // should have its own app ID, and we should properly declare compatibility in
198 // Adblock Plus.
193 pref("extensions.checkCompatibility.nightly", false); 199 pref("extensions.checkCompatibility.nightly", false);
Felix Dahlke 2015/03/01 07:01:52 MOZ_COMPATIBILITY_NIGHTLY is set, because MOZ_UPDA
Wladimir Palant 2015/03/01 18:02:24 We have a toolkit compatibility entry, any idea wh
Felix Dahlke 2015/03/02 06:22:32 Well, giving the browser a different app ID and ad
194 200
195 pref("extensions.update.url", "https://versioncheck.addons.mozilla.org/update/Ve rsionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxA ppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%A PP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%&currentAppVersio n=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE% "); 201 pref("extensions.update.url", "https://versioncheck.addons.mozilla.org/update/Ve rsionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxA ppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%A PP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%&currentAppVersio n=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE% ");
196 pref("extensions.update.background.url", "https://versioncheck-bg.addons.mozilla .org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM _VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID% &appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%&cu rrentAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPA TIBILITY_MODE%"); 202 pref("extensions.update.background.url", "https://versioncheck-bg.addons.mozilla .org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM _VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID% &appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%&cu rrentAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPA TIBILITY_MODE%");
197 203
198 pref("extensions.hotfix.id", "firefox-android-hotfix@mozilla.org"); 204 pref("extensions.hotfix.id", "firefox-android-hotfix@mozilla.org");
199 pref("extensions.hotfix.cert.checkAttributes", true); 205 pref("extensions.hotfix.cert.checkAttributes", true);
200 pref("extensions.hotfix.certs.1.sha1Fingerprint", "91:53:98:0C:C1:86:DF:47:8F:35 :22:9E:11:C9:A7:31:04:49:A1:AA"); 206 pref("extensions.hotfix.certs.1.sha1Fingerprint", "91:53:98:0C:C1:86:DF:47:8F:35 :22:9E:11:C9:A7:31:04:49:A1:AA");
201 207
202 /* preferences for the Get Add-ons pane */ 208 /* preferences for the Get Add-ons pane */
203 pref("extensions.getAddons.cache.enabled", true); 209 pref("extensions.getAddons.cache.enabled", true);
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 // The mode of home provider syncing. 877 // The mode of home provider syncing.
872 // 0: Sync always 878 // 0: Sync always
873 // 1: Sync only when on wifi 879 // 1: Sync only when on wifi
874 pref("home.sync.updateMode", 0); 880 pref("home.sync.updateMode", 0);
875 881
876 // How frequently to check if we should sync home provider data. 882 // How frequently to check if we should sync home provider data.
877 pref("home.sync.checkIntervalSecs", 3600); 883 pref("home.sync.checkIntervalSecs", 3600);
878 884
879 // Enable device storage API 885 // Enable device storage API
880 pref("device.storage.enabled", true); 886 pref("device.storage.enabled", true);
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld