Chromium Code Reviews| Index: third_party/WebKit/public/platform/WebInputEvent.h |
| diff --git a/third_party/WebKit/public/platform/WebInputEvent.h b/third_party/WebKit/public/platform/WebInputEvent.h |
| index 92a3245621baec8f751b5cd8955cf10cff9ec8a4..d3e792d8134b64e4c8aaaec3e186ea742ca2a88b 100644 |
| --- a/third_party/WebKit/public/platform/WebInputEvent.h |
| +++ b/third_party/WebKit/public/platform/WebInputEvent.h |
| @@ -193,11 +193,8 @@ |
| // IsRight, IsComposing don't change the meaning of the key |
| // being pressed. NumLockOn, ScrollLockOn, CapsLockOn are stateful |
| // and don't indicate explicit depressed state. |
| - // TODO(https://crbug.com/652018): Fix Java enum generation to not get |
| - // confused by correctly formatted code. |
| - // clang-format off |
| - KeyModifiers = SymbolKey | FnKey | AltGrKey | MetaKey | AltKey | ControlKey | ShiftKey |
| - // clang-format on |
| + KeyModifiers = |
| + SymbolKey | FnKey | AltGrKey | MetaKey | AltKey | ControlKey | ShiftKey |
|
Nico
2016/10/05 15:13:42
ps: consider adding a trailing `,`, else clang-for
estevenson
2016/10/05 15:34:57
Done.
|
| }; |
| // Indicates whether the browser needs to block on the ACK result for |