Bug 1311425 - Avoid expiration timers when scheduling idle runnables, r=froydnj

--HG--
extra : rebase_source : b20edf82a69a24965b4bb6300ff9b1be39ad7b8a
This commit is contained in:
Andreas Farre 2017-05-24 21:17:06 -04:00
Родитель 3ac028c898
Коммит 1cf93d7962
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -423,8 +423,12 @@ private:
NS_ENSURE_STATE(target); NS_ENSURE_STATE(target);
mTimer->SetTarget(target); mTimer->SetTarget(target);
} }
mTimer->InitWithNamedFuncCallback(TimerCallback, this, mTimerPeriod, mTimer->InitWithNamedFuncCallback(
nsITimer::TYPE_REPEATING_SLACK, mName); TimerCallback,
this,
mTimerPeriod,
nsITimer::TYPE_REPEATING_SLACK_LOW_PRIORITY,
mName);
return NS_OK; return NS_OK;
} }
}; };