| 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 9f2171f04668f27c8b551213098566004fbd4632..274b0f150d4f78ec59580bdc26db0d6ddd5f298e 100644
|
| --- a/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| +++ b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| @@ -641,6 +641,12 @@ WebMouseWheelEventBuilder::WebMouseWheelEventBuilder(const Widget* widget, const
|
| railsMode = static_cast<RailsMode>(event.getRailsMode());
|
| hasPreciseScrollingDeltas = event.hasPreciseScrollingDeltas();
|
| dispatchType = event.cancelable() ? WebInputEvent::Blocking : WebInputEvent::EventNonBlocking;
|
| +#if OS(MACOSX)
|
| + phase = static_cast<Phase>(event.phase());
|
| + momentumPhase = static_cast<Phase>(event.momentumPhase());
|
| + canRubberbandLeft = static_cast<Phase>(event.canRubberbandLeft());
|
| + canRubberbandRight = event.canRubberbandRight();
|
| +#endif
|
| }
|
|
|
| WebKeyboardEventBuilder::WebKeyboardEventBuilder(const KeyboardEvent& event)
|
|
|