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..e9ac846d6494329be5afa2367a23f3e4dec02548 100644 |
| --- a/third_party/WebKit/public/web/WebInputEvent.h |
| +++ b/third_party/WebKit/public/web/WebInputEvent.h |
| @@ -633,6 +633,9 @@ public: |
| // touch-point has moved (by whatever amount). |
| bool movedBeyondSlopRegion; |
| + // We will force the touch starts to be passive when during an ative fling animation. |
| + bool shouldForceBePassive; |
|
dtapuska
2016/05/05 20:22:21
Combining this change with https://codereview.chro
tdresser
2016/05/06 19:01:31
Let's just call this "dispatchedDuringFling", and
|
| + |
| // A unique identifier for the touch event. |
| uint32_t uniqueTouchEventId; |
| @@ -641,6 +644,7 @@ public: |
| , touchesLength(0) |
| , dispatchType(Blocking) |
| , movedBeyondSlopRegion(false) |
| + , shouldForceBePassive(false) |
| , uniqueTouchEventId(0) |
| { |
| } |