| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |