| Index: Source/core/events/UIEventWithKeyState.h
|
| diff --git a/Source/core/events/UIEventWithKeyState.h b/Source/core/events/UIEventWithKeyState.h
|
| index 8cd3d043b18a4d47ec5b7fabbf6b116e7c4ad0e6..cee4a6e73d867bfe2b106ef9e970128c91e512df 100644
|
| --- a/Source/core/events/UIEventWithKeyState.h
|
| +++ b/Source/core/events/UIEventWithKeyState.h
|
| @@ -52,8 +52,8 @@ namespace blink {
|
| }
|
|
|
| UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view,
|
| - int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| - : UIEvent(type, canBubble, cancelable, view, detail)
|
| + int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, InputDevice* sourceDevice = nullptr)
|
| + : UIEvent(type, canBubble, cancelable, view, detail, sourceDevice)
|
| , m_ctrlKey(ctrlKey)
|
| , m_altKey(altKey)
|
| , m_shiftKey(shiftKey)
|
|
|