Index: third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp |
diff --git a/third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp b/third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp |
index 0449cf84b58520e40849955a60572fae5b6800fd..0f6a9a8713b79f0bf9a12450d44df51d8551fc84 100644 |
--- a/third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp |
+++ b/third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp |
@@ -29,6 +29,13 @@ UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubbl |
{ |
} |
+UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget, PassRefPtrWillBeRawPtr<AbstractView> view, |
+ int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, InputDeviceCapabilities* sourceCapabilities) |
+ : UIEvent(type, canBubble, cancelable, relatedTarget, platformTimeStamp, view, detail, sourceCapabilities) |
+ , m_modifiers(modifiers) |
+{ |
+} |
+ |
UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, const EventModifierInit& initializer) |
: UIEvent(type, initializer) |
, m_modifiers(0) |