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

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

Issue 1800143002: Notify Blink about start of gesture scroll through a queued event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 8 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/EventHandler.h
diff --git a/third_party/WebKit/Source/core/input/EventHandler.h b/third_party/WebKit/Source/core/input/EventHandler.h
index e609398cb78cfdd85b5b99beb27a4c4967532f2d..e69ebc257ff027ec5ad0065aed09e312f1f4af0f 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.h
+++ b/third_party/WebKit/Source/core/input/EventHandler.h
@@ -399,9 +399,8 @@ private:
bool slideFocusOnShadowHostIfNecessary(const Element&);
void dispatchPointerEvents(const PlatformTouchEvent&, HeapVector<TouchInfo>&);
- void sendPointerCancels(HeapVector<TouchInfo>&);
- WebInputEventResult dispatchTouchEvents(const PlatformTouchEvent&, HeapVector<TouchInfo>&, bool, bool);
+ WebInputEventResult dispatchTouchEvents(const PlatformTouchEvent&, HeapVector<TouchInfo>&, bool);
// NOTE: If adding a new field to this class please ensure that it is
// cleared in |EventHandler::clear()|.
@@ -478,11 +477,6 @@ private:
PointerEventManager m_pointerEventManager;
- // This is set upon sending a pointercancel for touch, prevents PE dispatches for touches until
- // all touch-points become inactive.
- // TODO(mustaq): Consider a state per pointerType, as in PointerIdManager? Exclude mouse?
- bool m_inPointerCanceledState;
-
Member<Node> m_scrollGestureHandlingNode;
bool m_lastGestureScrollOverWidget;
// The most recent element to scroll natively during this scroll

Powered by Google App Engine
This is Rietveld 408576698