Bug 825949: Make nsGlobalWindow::InitTimer directly take a uint32_t, rather than a uint64_t. r=smaug

This commit is contained in:
Daniel Holbert 2013-01-03 13:48:01 -08:00
Родитель 700de2ac64
Коммит abd2c13da0
1 изменённых файлов: 3 добавлений и 3 удалений

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

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