| Index: third_party/WebKit/Source/core/events/KeyboardEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/KeyboardEvent.cpp b/third_party/WebKit/Source/core/events/KeyboardEvent.cpp
|
| index ed4874279a25fee3e14338e647b6fb64e540d61b..03975fd5c0e8ab23ed6d61a04db2c2d41d5bac03 100644
|
| --- a/third_party/WebKit/Source/core/events/KeyboardEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/KeyboardEvent.cpp
|
| @@ -97,7 +97,7 @@ KeyboardEvent::KeyboardEvent(const WebKeyboardEvent& key,
|
| static_cast<PlatformEvent::Modifiers>(key.modifiers),
|
| key.timeStampSeconds,
|
| InputDeviceCapabilities::doesntFireTouchEventsSourceCapabilities()),
|
| - m_keyEvent(makeUnique<WebKeyboardEvent>(key)),
|
| + m_keyEvent(WTF::makeUnique<WebKeyboardEvent>(key)),
|
| // TODO(crbug.com/482880): Fix this initialization to lazy initialization.
|
| m_code(Platform::current()->domCodeStringFromEnum(key.domCode)),
|
| m_key(Platform::current()->domKeyStringFromEnum(key.domKey)),
|
|
|