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 |