services/healthreport/healthreport-prefs.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #filter substitution
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 pref("datareporting.healthreport.currentDaySubmissionFailureCount", 0);
     7 pref("datareporting.healthreport.documentServerURI", "https://fhr.data.mozilla.com/");
     8 pref("datareporting.healthreport.documentServerNamespace", "metrics");
     9 pref("datareporting.healthreport.infoURL", "https://www.mozilla.org/legal/privacy/firefox.html#health-report");
    10 pref("datareporting.healthreport.logging.consoleEnabled", true);
    11 pref("datareporting.healthreport.logging.consoleLevel", "Warn");
    12 pref("datareporting.healthreport.logging.dumpEnabled", false);
    13 pref("datareporting.healthreport.logging.dumpLevel", "Debug");
    14 pref("datareporting.healthreport.lastDataSubmissionFailureTime", "0");
    15 pref("datareporting.healthreport.lastDataSubmissionRequestedTime", "0");
    16 pref("datareporting.healthreport.lastDataSubmissionSuccessfulTime", "0");
    17 pref("datareporting.healthreport.nextDataSubmissionTime", "0");
    18 pref("datareporting.healthreport.pendingDeleteRemoteData", false);
    20 // Health Report is enabled by default on all channels.
    21 pref("datareporting.healthreport.uploadEnabled", true);
    23 pref("datareporting.healthreport.service.enabled", true);
    24 pref("datareporting.healthreport.service.loadDelayMsec", 10000);
    25 pref("datareporting.healthreport.service.loadDelayFirstRunMsec", 60000);
    27 pref("datareporting.healthreport.service.providerCategories",
    28 #if MOZ_UPDATE_CHANNEL == release
    29     "healthreport-js-provider-default"
    30 #elif MOZ_UPDATE_CHANNEL == default
    31     "healthreport-js-provider-default"
    32 #else
    33     "healthreport-js-provider-default,healthreport-js-provider-@MOZ_UPDATE_CHANNEL@"
    34 #endif
    35     );
    37 pref("datareporting.healthreport.about.reportUrl",   "https://fhr.cdn.mozilla.net/%LOCALE%/");

mercurial