diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2022-05-08 16:42:41 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2022-05-08 16:42:41 -0400 |
commit | 34964f0ea6b83234e47396441ca3b8334dbf0daa (patch) | |
tree | 570f0d78d7c2c8b38343a21cfb2e9e3d351f34e5 /modules/ContentCrashHandlers.jsm | |
parent | 0e6fd39de109fa1020848fecddb5821501661ca7 (diff) | |
download | iceweasel-uxp-34964f0ea6b83234e47396441ca3b8334dbf0daa.tar.gz |
Remove telemetry more telemetry references
Diffstat (limited to 'modules/ContentCrashHandlers.jsm')
-rw-r--r-- | modules/ContentCrashHandlers.jsm | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/ContentCrashHandlers.jsm b/modules/ContentCrashHandlers.jsm index 488cc4f..459ff41 100644 --- a/modules/ContentCrashHandlers.jsm +++ b/modules/ContentCrashHandlers.jsm @@ -86,12 +86,6 @@ this.TabCrashHandler = { let childID = aSubject.get("childID"); let dumpID = aSubject.get("dumpID"); - if (!dumpID) { - Services.telemetry - .getHistogramById("FX_CONTENT_CRASH_DUMP_UNAVAILABLE") - .add(1); - } - if (!this.flushCrashedBrowserQueue(childID)) { this.unseenCrashedChildIDs.push(childID); // The elements in unseenCrashedChildIDs will only be removed if @@ -375,12 +369,6 @@ this.TabCrashHandler = { data.email = this.prefs.getCharPref("email", ""); } - // Make sure to only count once even if there are multiple windows - // that will all show about:tabcrashed. - if (this._crashedTabCount == 1) { - Services.telemetry.getHistogramById("FX_CONTENT_CRASH_PRESENTED").add(1); - } - message.target.sendAsyncMessage("SetCrashReportAvailable", data); }, @@ -401,12 +389,6 @@ this.TabCrashHandler = { let browser = message.target.browser; let childID = this.browserMap.get(browser.permanentKey); - - // Make sure to only count once even if there are multiple windows - // that will all show about:tabcrashed. - if (this._crashedTabCount == 0 && childID) { - Services.telemetry.getHistogramById("FX_CONTENT_CRASH_NOT_SUBMITTED").add(1); - } }, /** |