| Index: third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.cpp b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| index 84ff601e2fc25360fbd90ffa90a9b78810be1ce7..f355391d3deb0beccf40bc82e723dd0b644057dd 100644
|
| --- a/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| +++ b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| @@ -211,6 +211,7 @@ PlatformWheelEventBuilder::PlatformWheelEventBuilder(Widget* widget, const WebMo
|
|
|
| m_timestamp = e.timeStampSeconds;
|
| m_modifiers = e.modifiers;
|
| + m_dispatchType = toPlatformDispatchType(e.dispatchType);
|
|
|
| m_hasPreciseScrollingDeltas = e.hasPreciseScrollingDeltas;
|
| m_canScroll = e.canScroll;
|
| @@ -621,6 +622,7 @@ WebMouseWheelEventBuilder::WebMouseWheelEventBuilder(const Widget* widget, const
|
| resendingPluginId = event.resendingPluginId();
|
| railsMode = static_cast<RailsMode>(event.getRailsMode());
|
| hasPreciseScrollingDeltas = event.hasPreciseScrollingDeltas();
|
| + dispatchType = event.cancelable() ? WebInputEvent::Blocking : WebInputEvent::EventNonBlocking;
|
| }
|
|
|
| WebKeyboardEventBuilder::WebKeyboardEventBuilder(const KeyboardEvent& event)
|
|
|