| 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 62087d140d86c9d5ebfda25ab44b6042034a295d..48632d5ef789d2e4cb9f48561d0df0b0f6759b60 100644
|
| --- a/third_party/WebKit/public/web/WebInputEvent.h
|
| +++ b/third_party/WebKit/public/web/WebInputEvent.h
|
| @@ -449,6 +449,10 @@ public:
|
|
|
| RailsMode railsMode;
|
|
|
| + // Whether the event is blocking, non-blocking, all event
|
| + // listeners were passive or was forced to be non-blocking.
|
| + DispatchType dispatchType;
|
| +
|
| WebMouseWheelEvent()
|
| : WebMouseEvent(sizeof(WebMouseWheelEvent))
|
| , deltaX(0.0f)
|
| @@ -466,6 +470,7 @@ public:
|
| , hasPreciseScrollingDeltas(false)
|
| , canScroll(true)
|
| , railsMode(RailsModeFree)
|
| + , dispatchType(Blocking)
|
| {
|
| }
|
| };
|
|
|