summaryrefslogtreecommitdiff
path: root/xpcom/threads
diff options
context:
space:
mode:
authorPale Moon <git-repo@palemoon.org>2015-03-21 09:34:02 +0100
committerPale Moon <git-repo@palemoon.org>2015-03-21 09:34:02 +0100
commit00eba8adcdda96efcffcf76df476830cef8e2bc4 (patch)
tree7526ceb3098fa8098c02ec74eeb70e31c67c3ac1 /xpcom/threads
parente3afb8ad07f0c4415ec1f3c71ca191a066a7449e (diff)
downloadpalemoon-gre-00eba8adcdda96efcffcf76df476830cef8e2bc4.tar.gz
Remove Telemetry part1: Autotimers, accumulator calls
Diffstat (limited to 'xpcom/threads')
-rw-r--r--xpcom/threads/HangMonitor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/xpcom/threads/HangMonitor.cpp b/xpcom/threads/HangMonitor.cpp
index 2a92600ec..fb6842c85 100644
--- a/xpcom/threads/HangMonitor.cpp
+++ b/xpcom/threads/HangMonitor.cpp
@@ -249,8 +249,7 @@ NotifyActivity(ActivityType activityType)
// Mozilla's UI responsiveness goal is 50ms
static const uint32_t kUIResponsivenessThresholdMS = 50;
if (cumulativeUILagMS > kUIResponsivenessThresholdMS) {
- mozilla::Telemetry::Accumulate(mozilla::Telemetry::EVENTLOOP_UI_LAG_EXP_MS,
- cumulativeUILagMS);
+ // Telemetry stub
}
cumulativeUILagMS = 0;
}