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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 // product URLs | 442 // product URLs |
443 // The breakpad report server to link to in about:crashes | 443 // The breakpad report server to link to in about:crashes |
444 pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); | 444 pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); |
445 | 445 |
446 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930. | 446 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930. |
447 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblock_brows
er_android_support&lang=%LOCALE%"); | 447 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblock_brows
er_android_support&lang=%LOCALE%"); |
448 pref("app.supportURL", "https://support.mozilla.org/1/mobile/%VERSION%/%OS%/%LOC
ALE%/mobile-help"); | 448 pref("app.supportURL", "https://support.mozilla.org/1/mobile/%VERSION%/%OS%/%LOC
ALE%/mobile-help"); |
449 // Changed URL. See https://issues.adblockplus.org/ticket/3220 | 449 // Changed URL. See https://issues.adblockplus.org/ticket/3220 |
450 pref("app.faqURL", "https://adblockplus.org/redirect?link=adblock_browser_androi
d_faq&lang=%LOCALE%"); | 450 pref("app.faqURL", "https://adblockplus.org/redirect?link=adblock_browser_androi
d_faq&lang=%LOCALE%"); |
451 | 451 |
452 // Changed Feedback URL. See https://issues.adblockplus.org/ticket/6015 | |
453 // URL for feedback page | 452 // URL for feedback page |
454 // This should be kept in sync with the "feedback_link" string defined in string
s.xml.in | 453 // This should be kept in sync with the "feedback_link" string defined in string
s.xml.in |
455 pref("app.feedbackURL", "https://adblockplus.org/redirect?link=adblock_browser_a
ndroid_beta_community"); | 454 pref("app.feedbackURL", "https://input.mozilla.org/feedback/android/%VERSION%/%C
HANNEL%/?utm_source=feedback-prompt"); |
456 | 455 |
457 // Changed URLs. See https://issues.adblockplus.org/ticket/3220 | 456 // Changed URLs. See https://issues.adblockplus.org/ticket/3220 |
458 pref("app.privacyURL", "https://adblockplus.org/redirect?link=privacy&lang=%LOCA
LE%"); | 457 pref("app.privacyURL", "https://adblockplus.org/redirect?link=privacy&lang=%LOCA
LE%"); |
459 pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang=
%LOCALE%"); | 458 pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang=
%LOCALE%"); |
460 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); | 459 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); |
461 #if MOZ_UPDATE_CHANNEL == aurora | 460 #if MOZ_UPDATE_CHANNEL == aurora |
462 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%/a
uroranotes/"); | 461 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%/a
uroranotes/"); |
463 #elif MOZ_UPDATE_CHANNEL == beta | 462 #elif MOZ_UPDATE_CHANNEL == beta |
464 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%be
ta/releasenotes/"); | 463 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%be
ta/releasenotes/"); |
465 #else | 464 #else |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 pref("dom.keyboardevent.dispatch_during_composition", true); | 921 pref("dom.keyboardevent.dispatch_during_composition", true); |
923 | 922 |
924 #if CPU_ARCH == aarch64 | 923 #if CPU_ARCH == aarch64 |
925 pref("javascript.options.native_regexp", false); | 924 pref("javascript.options.native_regexp", false); |
926 #endif | 925 #endif |
927 | 926 |
928 // Ask for permission when enumerating WebRTC devices. | 927 // Ask for permission when enumerating WebRTC devices. |
929 pref("media.navigator.permission.device", true); | 928 pref("media.navigator.permission.device", true); |
930 | 929 |
931 pref("media.videocontrols.lock-video-orientation", true); | 930 pref("media.videocontrols.lock-video-orientation", true); |
OLD | NEW |