Index: third_party/WebKit/Source/core/events/GestureEvent.cpp |
diff --git a/third_party/WebKit/Source/core/events/GestureEvent.cpp b/third_party/WebKit/Source/core/events/GestureEvent.cpp |
index e79fc0c701c931fba3fe6c3ce9ef5484dd8697e7..f758af2d67b0d17f26ca4e345455b0be69473e10 100644 |
--- a/third_party/WebKit/Source/core/events/GestureEvent.cpp |
+++ b/third_party/WebKit/Source/core/events/GestureEvent.cpp |
@@ -115,7 +115,7 @@ GestureEvent::GestureEvent() |
} |
GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, PlatformEvent::Modifiers modifiers, float deltaX, float deltaY, float velocityX, float velocityY, bool inertial, double platformTimeStamp, int resendingPluginId, GestureSource source) |
- : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), modifiers, platformTimeStamp, PositionType::Position) |
+ : MouseRelatedEvent(type, true, true, nullptr, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), modifiers, platformTimeStamp, PositionType::Position) |
, m_deltaX(deltaX) |
, m_deltaY(deltaY) |
, m_velocityX(velocityX) |