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

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

Issue 29324521: Issue 2930 - Re-enable and adapt about:feedback (Closed)
Left Patch Set: Created Aug. 23, 2015, 6:05 p.m.
Right Patch Set: Don't show about:feedback automatically, fix support link Created Sept. 1, 2015, 2:01 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 | mobile/android/chrome/content/aboutFeedback.xhtml » ('j') | 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930. 451 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930.
452 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblockbrowse r_android_support&lang=%LOCALE%"); 452 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblock_brows er_android_support&lang=%LOCALE%");
453 // Used to submit data to input from about:feedback, changed in Adblock Browser, 453 // Used to submit data to input from about:feedback, changed in Adblock Browser,
454 // see: https://issues.adblockplus.org/ticket/2930. 454 // see: https://issues.adblockplus.org/ticket/2930.
455 pref("app.feedback.postURL", "https://adblockbrowser.org/submit-feedback/"); 455 pref("app.feedback.postURL", "https://adblockbrowser.org/submit-feedback/");
456 pref("app.privacyURL", "https://www.mozilla.org/privacy/firefox/"); 456 pref("app.privacyURL", "https://www.mozilla.org/privacy/firefox/");
457 pref("app.creditsURL", "http://www.mozilla.org/credits/"); 457 pref("app.creditsURL", "http://www.mozilla.org/credits/");
458 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); 458 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/");
459 #if MOZ_UPDATE_CHANNEL == aurora 459 #if MOZ_UPDATE_CHANNEL == aurora
460 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/");
461 #elif MOZ_UPDATE_CHANNEL == beta 461 #elif MOZ_UPDATE_CHANNEL == beta
462 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/");
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 #ifdef NIGHTLY_BUILD 899 #ifdef NIGHTLY_BUILD
900 pref("dom.serviceWorkers.enabled", true); 900 pref("dom.serviceWorkers.enabled", true);
901 #endif 901 #endif
902 902
903 // Disable sending console to logcat on release builds. 903 // Disable sending console to logcat on release builds.
904 #ifdef RELEASE_BUILD 904 #ifdef RELEASE_BUILD
905 pref("consoleservice.logcat", false); 905 pref("consoleservice.logcat", false);
906 #else 906 #else
907 pref("consoleservice.logcat", true); 907 pref("consoleservice.logcat", true);
908 #endif 908 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld