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

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

Issue 2514733003: Move EventHandler timers to per-frame task queues. (Closed)
Patch Set: Created 4 years, 1 month 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.cpp
diff --git a/third_party/WebKit/Source/core/input/GestureManager.cpp b/third_party/WebKit/Source/core/input/GestureManager.cpp
index 99f93e7ba9c4aef868b42c6a187ca9fbd49a0f6e..7f6fe75afe1a27035ec5df1c96d6fbf931b76951 100644
--- a/third_party/WebKit/Source/core/input/GestureManager.cpp
+++ b/third_party/WebKit/Source/core/input/GestureManager.cpp
@@ -19,11 +19,11 @@
namespace blink {
-GestureManager::GestureManager(LocalFrame* frame,
- ScrollManager* scrollManager,
- MouseEventManager* mouseEventManager,
- PointerEventManager* pointerEventManager,
- SelectionController* selectionController)
+GestureManager::GestureManager(LocalFrame& frame,
+ ScrollManager& scrollManager,
+ MouseEventManager& mouseEventManager,
+ PointerEventManager& pointerEventManager,
+ SelectionController& selectionController)
: m_frame(frame),
m_scrollManager(scrollManager),
m_mouseEventManager(mouseEventManager),

Powered by Google App Engine
This is Rietveld 408576698