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

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

Issue 2556993005: [blink] Split TaskType::Internal into InternalTimer and InternalLoading. (Closed)
Patch Set: One more fix 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 920215c5c9834c3ad4d52c0e763b7c413eba03c1..f8228b0ab3290aeffdd4fe5f6a577d4a460a1f96 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -166,9 +166,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::UnspecedTimer, &frame),
+ this,
+ &EventHandler::cursorUpdateTimerFired),
m_eventHandlerWillResetCapturingMouseEventsNode(0),
m_shouldOnlyFireDragOverEvent(false),
m_scrollManager(new ScrollManager(frame)),
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/core/workers/DedicatedWorkerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698