Chromium Code Reviews| Index: third_party/WebKit/public/web/WebInputEvent.h |
| diff --git a/third_party/WebKit/public/web/WebInputEvent.h b/third_party/WebKit/public/web/WebInputEvent.h |
| index 63837299dabd7772bda81521075d9656d6c3f11a..ae10c376a4094c68d7b73748d9b161d7b5e66156 100644 |
| --- a/third_party/WebKit/public/web/WebInputEvent.h |
| +++ b/third_party/WebKit/public/web/WebInputEvent.h |
| @@ -636,12 +636,15 @@ public: |
| // A unique identifier for the touch event. |
| uint32_t uniqueTouchEventId; |
| + bool isFlingInProgress; |
|
dtapuska
2016/04/28 18:59:09
move this beside the other boolean and the struct
lanwei
2016/04/28 20:25:18
Nice, thanks!
|
| + |
| WebTouchEvent() |
| : WebInputEvent(sizeof(WebTouchEvent)) |
| , touchesLength(0) |
| , dispatchType(Blocking) |
| , movedBeyondSlopRegion(false) |
| , uniqueTouchEventId(0) |
| + , isFlingInProgress(false) |
| { |
| } |
| }; |