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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 | 441 |
442 // This pref isn't actually used anymore, but we're leaving this here to avoid c
hanging | 442 // This pref isn't actually used anymore, but we're leaving this here to avoid c
hanging |
443 // the default so that we can migrate a user-set pref. See bug 885357. | 443 // the default so that we can migrate a user-set pref. See bug 885357. |
444 pref("plugins.click_to_play", true); | 444 pref("plugins.click_to_play", true); |
445 // The default value for nsIPluginTag.enabledState (STATE_CLICKTOPLAY = 1) | 445 // The default value for nsIPluginTag.enabledState (STATE_CLICKTOPLAY = 1) |
446 pref("plugin.default.state", 1); | 446 pref("plugin.default.state", 1); |
447 | 447 |
448 // product URLs | 448 // product URLs |
449 // The breakpad report server to link to in about:crashes | 449 // The breakpad report server to link to in about:crashes |
450 pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); | 450 pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); |
451 pref("app.support.baseURL", "http://support.mozilla.org/1/mobile/%VERSION%/%OS%/
%LOCALE%/"); | 451 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930. |
452 // Used to submit data to input from about:feedback | 452 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblockbrowse
r_android_support&lang=%LOCALE%"); |
453 pref("app.feedback.postURL", "https://input.mozilla.org/api/v1/feedback/"); | 453 // Used to submit data to input from about:feedback, changed in Adblock Browser, |
| 454 // see: https://issues.adblockplus.org/ticket/2930. |
| 455 pref("app.feedback.postURL", "https://adblockbrowser.org/submit-feedback/"); |
454 pref("app.privacyURL", "https://www.mozilla.org/privacy/firefox/"); | 456 pref("app.privacyURL", "https://www.mozilla.org/privacy/firefox/"); |
455 pref("app.creditsURL", "http://www.mozilla.org/credits/"); | 457 pref("app.creditsURL", "http://www.mozilla.org/credits/"); |
456 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); | 458 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); |
457 #if MOZ_UPDATE_CHANNEL == aurora | 459 #if MOZ_UPDATE_CHANNEL == aurora |
458 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/au
roranotes/"); | 460 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/au
roranotes/"); |
459 #elif MOZ_UPDATE_CHANNEL == beta | 461 #elif MOZ_UPDATE_CHANNEL == beta |
460 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%bet
a/releasenotes/"); | 462 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%bet
a/releasenotes/"); |
461 #else | 463 #else |
462 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/re
leasenotes/"); | 464 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/re
leasenotes/"); |
463 #endif | 465 #endif |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 #ifdef NIGHTLY_BUILD | 899 #ifdef NIGHTLY_BUILD |
898 pref("dom.serviceWorkers.enabled", true); | 900 pref("dom.serviceWorkers.enabled", true); |
899 #endif | 901 #endif |
900 | 902 |
901 // Disable sending console to logcat on release builds. | 903 // Disable sending console to logcat on release builds. |
902 #ifdef RELEASE_BUILD | 904 #ifdef RELEASE_BUILD |
903 pref("consoleservice.logcat", false); | 905 pref("consoleservice.logcat", false); |
904 #else | 906 #else |
905 pref("consoleservice.logcat", true); | 907 pref("consoleservice.logcat", true); |
906 #endif | 908 #endif |
OLD | NEW |