Back out ecac2ce4eada (bug 828126) for busting b2g's arm

This commit is contained in:
Phil Ringnalda 2013-01-13 17:48:33 -08:00
Родитель f3bbbf0dac
Коммит dfaf3bab2c
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -2194,7 +2194,12 @@ nsDOMWindowUtils::StopFrameTimeRecording(float** paintTimes, uint32_t *frameCoun
/* copy over the frame intervals and paint times into the arrays we just allocated */
for (uint32_t i = 0; i < *frameCount; i++) {
(*frameIntervals)[i] = tmpFrameIntervals[i];
#ifndef ANDROID
(*paintTimes)[i] = tmpPaintTimes[i];
#else
// Waiting for bug 785597 to work on android.
(*paintTimes)[i] = 0;
#endif
}
}

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

@ -942,10 +942,13 @@ nsRefreshDriver::Tick(int64_t aNowEpoch, TimeStamp aNowTime)
#ifdef DEBUG_INVALIDATIONS
printf("Starting ProcessPendingUpdates\n");
#endif
#ifndef ANDROID
// Waiting for bug 785597 to work on android.
nsRefPtr<layers::LayerManager> mgr = mPresContext->GetPresShell()->GetLayerManager();
if (mgr) {
mgr->SetPaintStartTime(mMostRecentRefresh);
}
#endif
mViewManagerFlushIsPending = false;
nsRefPtr<nsViewManager> vm = mPresContext->GetPresShell()->GetViewManager();