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

Unified Diff: Source/modules/gamepad/GamepadEvent.h

Issue 630833003: Replacing the OVERRIDE with override and FINAL with final in WebKit/Source/modules/gamepad (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/modules/gamepad/GamepadButton.h ('k') | Source/modules/gamepad/GamepadList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/modules/gamepad/GamepadButton.h ('k') | Source/modules/gamepad/GamepadList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698