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 a2ba385d4c7cc1beb000baee2a517b451b1f508d..8158f5b8b2ae4fe99f51e52d255d791a3713c47c 100644 |
--- a/third_party/WebKit/Source/core/events/KeyboardEvent.h |
+++ b/third_party/WebKit/Source/core/events/KeyboardEvent.h |
@@ -80,7 +80,7 @@ class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState { |
int keyCode() |
const; // key code for keydown and keyup, character for keypress |
int charCode() const; // character code for keypress, 0 for keydown and keyup |
- bool repeat() const { return modifiers() & PlatformEvent::IsAutoRepeat; } |
+ bool repeat() const { return modifiers() & WebInputEvent::IsAutoRepeat; } |
const AtomicString& interfaceName() const override; |
bool isKeyboardEvent() const override; |