| 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) {}
|
| };
|
|
|