diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-14 12:16:07 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-05-14 12:16:07 +0200 |
commit | 1595ee7da4559e4619127e2893cce04aad976ac8 (patch) | |
tree | c7ac3154661bbc7b9dc8f067eb9e4a4327fab94e /toolkit/mozapps/update/content/updates.js | |
parent | 413ba3bad12946082f4fa6918736cd8f8e2c5a62 (diff) | |
download | UXP-1595ee7da4559e4619127e2893cce04aad976ac8.tar UXP-1595ee7da4559e4619127e2893cce04aad976ac8.tar.gz UXP-1595ee7da4559e4619127e2893cce04aad976ac8.tar.lz UXP-1595ee7da4559e4619127e2893cce04aad976ac8.tar.xz UXP-1595ee7da4559e4619127e2893cce04aad976ac8.zip |
Rip broken telemetry out of the app AUS.
Tag #21
Diffstat (limited to 'toolkit/mozapps/update/content/updates.js')
-rw-r--r-- | toolkit/mozapps/update/content/updates.js | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/toolkit/mozapps/update/content/updates.js b/toolkit/mozapps/update/content/updates.js index 9996014b5..3e05566f1 100644 --- a/toolkit/mozapps/update/content/updates.js +++ b/toolkit/mozapps/update/content/updates.js @@ -11,10 +11,9 @@ // so we have to use different names. const {classes: CoC, interfaces: CoI, results: CoR, utils: CoU} = Components; -/* globals DownloadUtils, Services, AUSTLMY */ +/* globals DownloadUtils, Services */ CoU.import("resource://gre/modules/DownloadUtils.jsm", this); CoU.import("resource://gre/modules/Services.jsm", this); -CoU.import("resource://gre/modules/UpdateTelemetry.jsm", this); const XMLNS_XUL = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; @@ -116,15 +115,6 @@ var gUpdates = { _runUnload: true, /** - * Submit on close telemtry values for the update wizard. - * @param pageID - * The page id for the last page displayed. - */ - _submitTelemetry: function(aPageID) { - AUSTLMY.pingWizLastPageCode(aPageID); - }, - - /** * Helper function for setButtons * Resets button to original label & accesskey if string is null. */ @@ -242,7 +232,6 @@ var gUpdates = { var pageid = document.documentElement.currentPage.pageid; if ("onWizardFinish" in this._pages[pageid]) this._pages[pageid].onWizardFinish(); - this._submitTelemetry(pageid); }, /** @@ -254,7 +243,6 @@ var gUpdates = { var pageid = document.documentElement.currentPage.pageid; if ("onWizardCancel" in this._pages[pageid]) this._pages[pageid].onWizardCancel(); - this._submitTelemetry(pageid); }, /** |