diff options
author | Moonchild <moonchild@palemoon.org> | 2021-11-29 17:34:58 -0500 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-06 23:48:37 +0200 |
commit | 7da587d0aaa6cfbb53fbfd9af55ba8c27ce8f385 (patch) | |
tree | b5f666c5587d4330afc6b3d0105cb659161eef6b /toolkit | |
parent | ac50292859dbffbc0ec0c29bb33c47f27f462310 (diff) | |
download | uxp-7da587d0aaa6cfbb53fbfd9af55ba8c27ce8f385.tar.gz |
Issue #21 - Remove unused telemetry build variables.
Hard-code the values in AppConstants.jsm for compatibility, even if
nobody should actually be using this in extensions or what not.
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/modules/AppConstants.jsm | 31 |
1 files changed, 4 insertions, 27 deletions
diff --git a/toolkit/modules/AppConstants.jsm b/toolkit/modules/AppConstants.jsm index 635e936ede..40a630a445 100644 --- a/toolkit/modules/AppConstants.jsm +++ b/toolkit/modules/AppConstants.jsm @@ -60,33 +60,10 @@ this.AppConstants = Object.freeze({ false, #endif - MOZ_SERVICES_HEALTHREPORT: -#ifdef MOZ_SERVICES_HEALTHREPORT - true, -#else - false, -#endif - - MOZ_DATA_REPORTING: -#ifdef MOZ_DATA_REPORTING - true, -#else - false, -#endif - - MOZ_TELEMETRY_REPORTING: -#ifdef MOZ_TELEMETRY_REPORTING - true, -#else - false, -#endif - - MOZ_TELEMETRY_ON_BY_DEFAULT: -#ifdef MOZ_TELEMETRY_ON_BY_DEFAULT - true, -#else - false, -#endif + MOZ_SERVICES_HEALTHREPORT: false, + MOZ_DATA_REPORTING: false, + MOZ_TELEMETRY_REPORTING: false, + MOZ_TELEMETRY_ON_BY_DEFAULT: false, MOZ_UPDATER: #ifdef MOZ_UPDATER |