From e4ee1b92182315ae792c0986c4bb6ad640d5d2f9 Mon Sep 17 00:00:00 2001 From: Jan Keromnes Date: Thu, 2 Jul 2015 08:13:00 -0400 Subject: [PATCH] Bug 1177143 - Throttle HUD memory collection to 2 seconds. r=jryans --- b2g/chrome/content/devtools/hud.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2g/chrome/content/devtools/hud.js b/b2g/chrome/content/devtools/hud.js index 2b585254a74f..60c9b526a1f8 100644 --- a/b2g/chrome/content/devtools/hud.js +++ b/b2g/chrome/content/devtools/hud.js @@ -685,7 +685,7 @@ let memoryWatcher = { }); } - let timer = setTimeout(() => this.measure(target), 800); + let timer = setTimeout(() => this.measure(target), 2000); this._timers.set(target, timer); },