| Index: third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp b/third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp
|
| index dedb8a4dc4ecc77aa91d6b875387373aff3e0b59..bf3dad1c5ed06b739676b3f64340b6742bf6cf81 100644
|
| --- a/third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp
|
| @@ -51,11 +51,11 @@ static LayoutSize contentsScrollOffset(AbstractView* abstractView)
|
| return LayoutSize(frameView->scrollX() / scaleFactor, frameView->scrollY() / scaleFactor);
|
| }
|
|
|
| -MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable,
|
| +MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, EventTarget* relatedTarget,
|
| PassRefPtrWillBeRawPtr<AbstractView> abstractView, int detail, const IntPoint& screenLocation,
|
| const IntPoint& rootFrameLocation, const IntPoint& movementDelta, PlatformEvent::Modifiers modifiers,
|
| double platformTimeStamp, PositionType positionType, InputDeviceCapabilities* sourceCapabilities)
|
| - : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, modifiers, platformTimeStamp, sourceCapabilities)
|
| + : UIEventWithKeyState(eventType, canBubble, cancelable, relatedTarget, abstractView, detail, modifiers, platformTimeStamp, sourceCapabilities)
|
| , m_screenLocation(screenLocation)
|
| , m_movementDelta(movementDelta)
|
| , m_positionType(positionType)
|
|
|