Index: Source/modules/gamepad/GamepadEvent.h |
diff --git a/Source/modules/gamepad/GamepadEvent.h b/Source/modules/gamepad/GamepadEvent.h |
index 460507a81f7219c284fbc006a668f57d394dccc4..914748539a55c198844d674e48a63e37d7c74b14 100644 |
--- a/Source/modules/gamepad/GamepadEvent.h |
+++ b/Source/modules/gamepad/GamepadEvent.h |
@@ -16,7 +16,7 @@ struct GamepadEventInit : public EventInit { |
Member<Gamepad> gamepad; |
}; |
-class GamepadEvent FINAL : public Event { |
+class GamepadEvent final : public Event { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<GamepadEvent> create() |
@@ -35,9 +35,9 @@ public: |
Gamepad* gamepad() const { return m_gamepad.get(); } |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
GamepadEvent(); |