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

Unified Diff: third_party/WebKit/Source/core/input/GestureManager.h

Issue 2350433002: Extract more of the mouse logic from EventHandler (Closed)
Patch Set: Yet another rebase because of a presubmit rule bug Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/input/GestureManager.h
diff --git a/third_party/WebKit/Source/core/input/GestureManager.h b/third_party/WebKit/Source/core/input/GestureManager.h
index 1ddc143f4fcaef2c6e82cd4dfa3b4d1aec129451..4ac271962c810b9d71b7d465dc3e6fa356ed2a30 100644
--- a/third_party/WebKit/Source/core/input/GestureManager.h
+++ b/third_party/WebKit/Source/core/input/GestureManager.h
@@ -17,6 +17,7 @@ namespace blink {
class ScrollManager;
class SelectionController;
class PointerEventManager;
+class MouseEventManager;
// This class takes care of gestures and delegating the action based on the
// gesture to the responsible class.
@@ -27,6 +28,7 @@ class CORE_EXPORT GestureManager
public:
GestureManager(LocalFrame*,
ScrollManager*,
+ MouseEventManager*,
PointerEventManager*,
SelectionController*);
DECLARE_TRACE();
@@ -66,6 +68,7 @@ class CORE_EXPORT GestureManager
const Member<LocalFrame> m_frame;
Member<ScrollManager> m_scrollManager;
+ Member<MouseEventManager> m_mouseEventManager;
Member<PointerEventManager> m_pointerEventManager;
// Set on GestureTapDown if the |pointerdown| event corresponding to the
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandlingUtil.cpp ('k') | third_party/WebKit/Source/core/input/GestureManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698