зеркало из https://github.com/mozilla/gecko-dev.git
Bug 825949: Make nsGlobalWindow::InitTimer directly take a uint32_t, rather than a uint64_t. r=smaug
This commit is contained in:
Родитель
700de2ac64
Коммит
abd2c13da0
|
@ -147,9 +147,9 @@ struct nsTimeout : mozilla::LinkedListElement<nsTimeout>
|
|||
nsrefcnt Release();
|
||||
nsrefcnt AddRef();
|
||||
|
||||
nsresult InitTimer(nsTimerCallbackFunc aFunc, uint64_t delay) {
|
||||
return mTimer->InitWithFuncCallback(aFunc, this,
|
||||
static_cast<uint32_t>(delay),
|
||||
nsresult InitTimer(nsTimerCallbackFunc aFunc, uint32_t aDelay)
|
||||
{
|
||||
return mTimer->InitWithFuncCallback(aFunc, this, aDelay,
|
||||
nsITimer::TYPE_ONE_SHOT);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче