Bug 1084672. Call NotifyDidPaint from the refresh driver to ensure it gets called regardless of whether OMTC is used or not. r=mattwoodrow

--HG--
extra : rebase_source : 51cc908538bd127c0af9089ae92aa82146032015
This commit is contained in:
Robert O'Callahan 2014-10-22 14:26:17 +13:00
Родитель 33d6ca45fb
Коммит 5fbde2a977
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -8803,10 +8803,6 @@ PresShell::DidPaintWindow()
// about compositing of popups.
return;
}
if (nsContentUtils::XPConnect()) {
nsContentUtils::XPConnect()->NotifyDidPaint();
}
}
bool

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

@ -1362,6 +1362,10 @@ nsRefreshDriver::Tick(int64_t aNowEpoch, TimeStamp aNowTime)
TRACING_INTERVAL_END);
}
profiler_tracing("Paint", "DisplayList", TRACING_INTERVAL_END);
if (nsContentUtils::XPConnect()) {
nsContentUtils::XPConnect()->NotifyDidPaint();
}
}
for (uint32_t i = 0; i < mPostRefreshObservers.Length(); ++i) {