| 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 0f6a9a8713b79f0bf9a12450d44df51d8551fc84..ad02a57eee00656bd927c97835148d500da5c3d8 100644
|
| --- a/third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp
|
| +++ b/third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp
|
| @@ -22,14 +22,14 @@
|
|
|
| namespace blink {
|
|
|
| -UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view,
|
| +UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, RawPtr<AbstractView> view,
|
| int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, InputDeviceCapabilities* sourceCapabilities)
|
| : UIEvent(type, canBubble, cancelable, platformTimeStamp, view, detail, sourceCapabilities)
|
| , m_modifiers(modifiers)
|
| {
|
| }
|
|
|
| -UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget, PassRefPtrWillBeRawPtr<AbstractView> view,
|
| +UIEventWithKeyState::UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget, RawPtr<AbstractView> view,
|
| int detail, PlatformEvent::Modifiers modifiers, double platformTimeStamp, InputDeviceCapabilities* sourceCapabilities)
|
| : UIEvent(type, canBubble, cancelable, relatedTarget, platformTimeStamp, view, detail, sourceCapabilities)
|
| , m_modifiers(modifiers)
|
|
|