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 ac0930c6bd6e73133a8c8087244a502285c15bcd..5fa1f3f462f623170cf4c05159aa32e7e5c4560c 100644 |
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp |
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp |
@@ -167,9 +167,10 @@ EventHandler::EventHandler(LocalFrame& frame) |
m_hoverTimer(TaskRunnerHelper::get(TaskType::UserInteraction, &frame), |
this, |
&EventHandler::hoverTimerFired), |
- m_cursorUpdateTimer(TaskRunnerHelper::get(TaskType::Internal, &frame), |
- this, |
- &EventHandler::cursorUpdateTimerFired), |
+ m_cursorUpdateTimer( |
+ TaskRunnerHelper::get(TaskType::InternalTimer, &frame), |
+ this, |
+ &EventHandler::cursorUpdateTimerFired), |
m_eventHandlerWillResetCapturingMouseEventsNode(0), |
m_shouldOnlyFireDragOverEvent(false), |
m_scrollManager(new ScrollManager(frame)), |