Chromium Code Reviews| Index: third_party/WebKit/Source/core/events/WheelEvent.cpp |
| diff --git a/third_party/WebKit/Source/core/events/WheelEvent.cpp b/third_party/WebKit/Source/core/events/WheelEvent.cpp |
| index c27be32420f071d5305bedc9f892b789e8e2514e..fb752f60b3ecb12b152603bce5217847f18f5ff6 100644 |
| --- a/third_party/WebKit/Source/core/events/WheelEvent.cpp |
| +++ b/third_party/WebKit/Source/core/events/WheelEvent.cpp |
| @@ -76,7 +76,7 @@ WheelEvent::WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, |
| bool canScroll, int resendingPluginId, bool hasPreciseScrollingDeltas, RailsMode railsMode) |
| : MouseEvent(EventTypeNames::wheel, true, true, view, 0, screenLocation.x(), screenLocation.y(), |
| windowLocation.x(), windowLocation.y(), 0, 0, modifiers, 0, buttons, |
| - nullptr, platformTimeStamp, PlatformMouseEvent::RealOrIndistinguishable) |
| + nullptr, platformTimeStamp, PlatformMouseEvent::RealOrIndistinguishable, String()) |
|
Rick Byers
2016/03/10 21:36:29
as discussed this is a bug, but may not be too imp
zino
2016/03/11 09:35:47
Done.
|
| , m_wheelDelta(wheelTicks.x() * TickMultiplier, wheelTicks.y() * TickMultiplier) |
| , m_deltaX(-rawDelta.x()) |
| , m_deltaY(-rawDelta.y()) |