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

Unified Diff: third_party/WebKit/public/platform/WebInputEvent.h

Issue 2471523002: Make touch events uncancelable during fling when they are on the current active scroll layer (Closed)
Patch Set: clean up code 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/public/platform/WebInputEvent.h
diff --git a/third_party/WebKit/public/platform/WebInputEvent.h b/third_party/WebKit/public/platform/WebInputEvent.h
index 43349d55392bfd07fde5960bfb8649effe5b3696..99a73c1d7ae4b5f8013ea8851df631c5f8ab9d1c 100644
--- a/third_party/WebKit/public/platform/WebInputEvent.h
+++ b/third_party/WebKit/public/platform/WebInputEvent.h
@@ -635,10 +635,6 @@ class WebTouchEvent : public WebInputEvent {
// touch-point has moved (by whatever amount).
bool movedBeyondSlopRegion;
- // Whether there was an active fling animation when the event was
- // dispatched.
- bool dispatchedDuringFling;
-
// Whether this touch event is a touchstart or a first touchmove event per
// scroll.
bool touchStartOrFirstTouchMove;
@@ -652,7 +648,6 @@ class WebTouchEvent : public WebInputEvent {
touchesLength(0),
dispatchType(Blocking),
movedBeyondSlopRegion(false),
- dispatchedDuringFling(false),
touchStartOrFirstTouchMove(false),
uniqueTouchEventId(0) {}
};

Powered by Google App Engine
This is Rietveld 408576698