| 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 9c717af288e282b303fd6e3d24484da3b276862b..09e2104f744d64a60d31f64ca73e442d2ddb6506 100644
|
| --- a/third_party/WebKit/Source/core/events/KeyboardEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/KeyboardEvent.cpp
|
| @@ -83,9 +83,8 @@ KeyboardEvent::KeyboardEvent(const WebKeyboardEvent& key, AbstractView* view)
|
| static_cast<PlatformEvent::Modifiers>(key.modifiers),
|
| key.timeStampSeconds,
|
| InputDeviceCapabilities::doesntFireTouchEventsSourceCapabilities()),
|
| - m_keyEvent(wrapUnique(new WebKeyboardEvent(key)))
|
| - // TODO: BUG482880 Fix this initialization to lazy initialization.
|
| - ,
|
| + m_keyEvent(wrapUnique(new 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)),
|
| m_location(keyLocationCode(key)) {
|
|
|