| Index: third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/KeyboardEvent.h b/third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| index e3f075ebc0285e83c1c840eb39946eaf6a6f888a..c1f974563cde917508a140e70c3a447921bea5d6 100644
|
| --- a/third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| @@ -27,6 +27,7 @@
|
| #include "core/CoreExport.h"
|
| #include "core/events/KeyboardEventInit.h"
|
| #include "core/events/UIEventWithKeyState.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -97,7 +98,7 @@ private:
|
|
|
| void initLocationModifiers(unsigned location);
|
|
|
| - OwnPtr<PlatformKeyboardEvent> m_keyEvent;
|
| + std::unique_ptr<PlatformKeyboardEvent> m_keyEvent;
|
| String m_keyIdentifier;
|
| String m_code;
|
| String m_key;
|
|
|