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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 2556993005: [blink] Split TaskType::Internal into InternalTimer and InternalLoading. (Closed)
Patch Set: Created 4 years 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 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)),

Powered by Google App Engine
This is Rietveld 408576698