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

Unified Diff: Source/WebCore/page/EventHandler.h

Issue 12817006: Merge 144519 "EventHandler::handleGestureScrollUpdate() should i..." (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 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: Source/WebCore/page/EventHandler.h
===================================================================
--- Source/WebCore/page/EventHandler.h (revision 145820)
+++ Source/WebCore/page/EventHandler.h (working copy)
@@ -183,6 +183,7 @@
bool handleGestureTwoFingerTap(const PlatformGestureEvent&);
bool handleGestureScrollUpdate(const PlatformGestureEvent&);
bool handleGestureScrollBegin(const PlatformGestureEvent&);
+ void clearGestureScrollNodes();
bool isScrollbarHandlingGestures() const;
#endif
@@ -380,6 +381,7 @@
bool handleGestureForTextSelectionOrContextMenu(const PlatformGestureEvent&);
bool passGestureEventToWidget(const PlatformGestureEvent&, Widget*);
bool passGestureEventToWidgetIfPossible(const PlatformGestureEvent&, RenderObject*);
+ bool sendScrollEventToView(const PlatformGestureEvent&, const FloatSize&);
#endif
void setLastKnownMousePosition(const PlatformMouseEvent&);
@@ -471,6 +473,7 @@
#if ENABLE(GESTURE_EVENTS)
RefPtr<Node> m_scrollGestureHandlingNode;
bool m_lastHitTestResultOverWidget;
+ RefPtr<Node> m_previousGestureScrolledNode;
RefPtr<Scrollbar> m_scrollbarHandlingScrollGesture;
#endif

Powered by Google App Engine
This is Rietveld 408576698