Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2191533003: Refactor Timer classes in preparation for landing FrameTimers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More build fixes Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 00808194192e5d97cc9ec69ed6fd6c88abc2d263..15ae442e9a9fb3ac1d7ab4b34e0fade56b777386 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -1640,7 +1640,7 @@ void FrameView::setLayoutSize(const IntSize& size)
setLayoutSizeInternal(size);
}
-void FrameView::didScrollTimerFired(Timer<FrameView>*)
+void FrameView::didScrollTimerFired(TimerBase*)
{
if (m_frame->document() && !m_frame->document()->layoutViewItem().isNull())
m_frame->document()->fetcher()->updateAllImageResourcePriorities();
@@ -2063,7 +2063,7 @@ bool FrameView::updateWidgets()
return m_partUpdateSet.isEmpty();
}
-void FrameView::updateWidgetsTimerFired(Timer<FrameView>*)
+void FrameView::updateWidgetsTimerFired(TimerBase*)
{
ASSERT(!isInPerformLayout());
m_updateWidgetsTimer.stop();
@@ -2162,7 +2162,7 @@ void FrameView::sendResizeEventIfNeeded()
InspectorInstrumentation::didResizeMainFrame(m_frame.get());
}
-void FrameView::postLayoutTimerFired(Timer<FrameView>*)
+void FrameView::postLayoutTimerFired(TimerBase*)
{
performPostLayoutTasks();
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.h ('k') | third_party/WebKit/Source/core/frame/PlatformEventController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698