mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
Bug 1205840 - Typo fixes in AddonWatcher.jsm. r=felipe
--HG-- extra : transplant_source : %D4%8F%A4%40%90a%25%E2%8E%DD%3Er%D5%25%1D%0B%F9%DC%3D%8A
This commit is contained in:
parent
e534fd8b4f
commit
a28b7ebc97
@ -62,6 +62,7 @@ var AddonWatcher = {
|
||||
* @type {number}
|
||||
*/
|
||||
_latestWakeup: Date.now(),
|
||||
_latestSnapshot: null,
|
||||
|
||||
/**
|
||||
* Initialize and launch the AddonWatcher.
|
||||
@ -168,7 +169,7 @@ var AddonWatcher = {
|
||||
return true;
|
||||
}
|
||||
|
||||
let diff = snapshot.processData.subtract(previousSnapshot.processData);
|
||||
let diff = currentSnapshot.processData.subtract(previousSnapshot.processData);
|
||||
if (diff.totalCPUTime >= deltaT * THREAD_TAKES_LOTS_OF_CPU_FACTOR ) {
|
||||
// The main thread itself is using lots of CPU, perhaps because of
|
||||
// an add-on. We need to investigate.
|
||||
@ -198,7 +199,7 @@ var AddonWatcher = {
|
||||
|
||||
return Task.spawn(function*() {
|
||||
try {
|
||||
let previousSnapshot = this._latestSnapshot; // FIXME: Implement
|
||||
let previousSnapshot = this._latestSnapshot;
|
||||
let snapshot = this._latestSnapshot = yield this._monitor.promiseSnapshot();
|
||||
let isSystemTooBusy = this._isSystemTooBusy(currentWakeup - previousWakeup, snapshot, previousSnapshot);
|
||||
|
||||
@ -242,7 +243,7 @@ var AddonWatcher = {
|
||||
// The main event loop is behaving weirdly, most likely because of
|
||||
// the system being busy or asleep, so results are not trustworthy.
|
||||
// Ignore.
|
||||
continue;
|
||||
return;
|
||||
}
|
||||
|
||||
// Report misbehaviors to Telemetry
|
||||
|
Loading…
Reference in New Issue
Block a user