| Index: Source/core/events/MouseRelatedEvent.cpp
|
| diff --git a/Source/core/events/MouseRelatedEvent.cpp b/Source/core/events/MouseRelatedEvent.cpp
|
| index 5d7e5fb5c9cc76fbef93f473afaeb31b0ff596cf..bff321e478d4b192f83e929b8ec677816651a009 100644
|
| --- a/Source/core/events/MouseRelatedEvent.cpp
|
| +++ b/Source/core/events/MouseRelatedEvent.cpp
|
| @@ -55,8 +55,8 @@ static LayoutSize contentsScrollOffset(AbstractView* abstractView)
|
| MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> abstractView,
|
| int detail, const IntPoint& screenLocation, const IntPoint& rootFrameLocation,
|
| const IntPoint& movementDelta,
|
| - bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated)
|
| - : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
|
| + bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated, InputDevice* sourceDevice)
|
| + : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey, sourceDevice)
|
| , m_screenLocation(screenLocation)
|
| , m_movementDelta(movementDelta)
|
| , m_isSimulated(isSimulated)
|
|
|