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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/GamepadDispatcher.h ('k') | Source/modules/gamepad/NavigatorGamepad.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 8c49874409070a7fff51be26fa5df988fc3fb717..b1a1a5d1dd07e85d342c7b1c67c81ce751bc1cb0 100644
--- a/Source/modules/gamepad/GamepadEvent.h
+++ b/Source/modules/gamepad/GamepadEvent.h
@@ -26,11 +26,11 @@ public:
{
return adoptRefWillBeNoop(new GamepadEvent(type, initializer));
}
- virtual ~GamepadEvent();
+ ~GamepadEvent() override;
Gamepad* gamepad() const { return m_gamepad.get(); }
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/gamepad/GamepadDispatcher.h ('k') | Source/modules/gamepad/NavigatorGamepad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698