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

Side by Side Diff: third_party/WebKit/Source/core/input/MouseEventManager.h

Issue 2645483002: Move the fake mouse move event timer to the UserInteraction task queue. (Closed)
Patch Set: fix build Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/input/MouseEventManager.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MouseEventManager_h 5 #ifndef MouseEventManager_h
6 #define MouseEventManager_h 6 #define MouseEventManager_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/dom/SynchronousMutationObserver.h" 9 #include "core/dom/SynchronousMutationObserver.h"
10 #include "core/input/BoundaryEventDispatcher.h" 10 #include "core/input/BoundaryEventDispatcher.h"
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 215
216 int m_clickCount; 216 int m_clickCount;
217 Member<Node> m_clickNode; 217 Member<Node> m_clickNode;
218 218
219 IntPoint m_mouseDownPos; // In our view's coords. 219 IntPoint m_mouseDownPos; // In our view's coords.
220 TimeTicks m_mouseDownTimestamp; 220 TimeTicks m_mouseDownTimestamp;
221 PlatformMouseEvent m_mouseDown; 221 PlatformMouseEvent m_mouseDown;
222 222
223 LayoutPoint m_dragStartPos; 223 LayoutPoint m_dragStartPos;
224 224
225 Timer<MouseEventManager> m_fakeMouseMoveEventTimer; 225 TaskRunnerTimer<MouseEventManager> m_fakeMouseMoveEventTimer;
226 }; 226 };
227 227
228 } // namespace blink 228 } // namespace blink
229 229
230 #endif // MouseEventManager_h 230 #endif // MouseEventManager_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/input/MouseEventManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698