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
Родитель d9aa57171d
Коммит e4ee1b9218
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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