diff options
Diffstat (limited to 'services/sync/modules/service.js')
-rw-r--r-- | services/sync/modules/service.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/services/sync/modules/service.js b/services/sync/modules/service.js index f3837a9499..2631efafdb 100644 --- a/services/sync/modules/service.js +++ b/services/sync/modules/service.js @@ -51,15 +51,6 @@ const STORAGE_INFO_TYPES = [INFO_COLLECTIONS, INFO_COLLECTION_COUNTS, INFO_QUOTA]; -// A structure mapping a (boolean) telemetry probe name to a preference name. -// The probe will record true if the pref is modified, false otherwise. -const TELEMETRY_CUSTOM_SERVER_PREFS = { - WEAVE_CUSTOM_LEGACY_SERVER_CONFIGURATION: "services.sync.serverURL", - WEAVE_CUSTOM_FXA_SERVER_CONFIGURATION: "identity.fxaccounts.auth.uri", - WEAVE_CUSTOM_TOKEN_SERVER_CONFIGURATION: "services.sync.tokenServerURI", -}; - - function Sync11Service() { this._notify = Utils.notify("weave:service:"); } @@ -377,12 +368,6 @@ Sync11Service.prototype = { Svc.Obs.notify("weave:engine:start-tracking"); } - // Telemetry probes to indicate if the user is using custom servers. - for (let [probeName, prefName] of Iterator(TELEMETRY_CUSTOM_SERVER_PREFS)) { - let isCustomized = Services.prefs.prefHasUserValue(prefName); - Services.telemetry.getHistogramById(probeName).add(isCustomized); - } - // Send an event now that Weave service is ready. We don't do this // synchronously so that observers can import this module before // registering an observer. |