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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.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/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index cc58b44a8e10ad145b64a0c1093cc3dbf17af8be..da6b8501a194099338fa4900ae748e562a88bd7e 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -557,7 +557,7 @@ bool EventHandler::useHandCursor(Node* node, bool isOverLink)
return ((isOverLink || isSubmitImage(node)) && !hasEditableStyle(*node));
}
-void EventHandler::cursorUpdateTimerFired(Timer<EventHandler>*)
+void EventHandler::cursorUpdateTimerFired(TimerBase*)
{
ASSERT(m_frame);
ASSERT(m_frame->document());
@@ -2154,7 +2154,7 @@ void EventHandler::dispatchFakeMouseMoveEventSoonInQuad(const FloatQuad& quad)
dispatchFakeMouseMoveEventSoon();
}
-void EventHandler::fakeMouseMoveEventTimerFired(Timer<EventHandler>* timer)
+void EventHandler::fakeMouseMoveEventTimerFired(TimerBase* timer)
{
TRACE_EVENT0("input", "EventHandler::fakeMouseMoveEventTimerFired");
ASSERT_UNUSED(timer, timer == &m_fakeMouseMoveEventTimer);
@@ -2199,7 +2199,7 @@ void EventHandler::resizeScrollableAreaDestroyed()
m_scrollManager.clearResizeScrollableArea(true);
}
-void EventHandler::hoverTimerFired(Timer<EventHandler>*)
+void EventHandler::hoverTimerFired(TimerBase*)
{
TRACE_EVENT0("input", "EventHandler::hoverTimerFired");
m_hoverTimer.stop();
@@ -2217,7 +2217,7 @@ void EventHandler::hoverTimerFired(Timer<EventHandler>*)
}
}
-void EventHandler::activeIntervalTimerFired(Timer<EventHandler>*)
+void EventHandler::activeIntervalTimerFired(TimerBase*)
{
TRACE_EVENT0("input", "EventHandler::activeIntervalTimerFired");
m_activeIntervalTimer.stop();
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandler.h ('k') | third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698