Bug 1177143 - Throttle HUD memory collection to 2 seconds. r=jryans

This commit is contained in:
Jan Keromnes 2015-07-02 08:13:00 -04:00
parent d9aa57171d
commit e4ee1b9218

View File

@ -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);
},