Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: third_party/WebKit/Source/core/events/KeyboardEvent.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)) {

Powered by Google App Engine
This is Rietveld 408576698