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

Unified Diff: Source/modules/gamepad/NavigatorGamepad.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/GamepadList.h ('k') | Source/modules/gamepad/WebKitGamepad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/gamepad/NavigatorGamepad.h
diff --git a/Source/modules/gamepad/NavigatorGamepad.h b/Source/modules/gamepad/NavigatorGamepad.h
index d88ef6b5b29383cccb40be745b0629650883b5bb..f2b8361b3235fdf64e674f60e90442b91760c9c4 100644
--- a/Source/modules/gamepad/NavigatorGamepad.h
+++ b/Source/modules/gamepad/NavigatorGamepad.h
@@ -43,7 +43,7 @@ class GamepadList;
class Navigator;
class WebKitGamepadList;
-class NavigatorGamepad FINAL : public NoBaseWillBeGarbageCollectedFinalized<NavigatorGamepad>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty, public PlatformEventController, public DOMWindowLifecycleObserver {
+class NavigatorGamepad final : public NoBaseWillBeGarbageCollectedFinalized<NavigatorGamepad>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty, public PlatformEventController, public DOMWindowLifecycleObserver {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorGamepad);
public:
static NavigatorGamepad* from(Document&);
@@ -69,20 +69,20 @@ private:
void didRemoveGamepadEventListeners();
// DOMWindowProperty
- virtual void willDestroyGlobalObjectInFrame() OVERRIDE;
- virtual void willDetachGlobalObjectFromFrame() OVERRIDE;
+ virtual void willDestroyGlobalObjectInFrame() override;
+ virtual void willDetachGlobalObjectFromFrame() override;
// PlatformEventController
- virtual void registerWithDispatcher() OVERRIDE;
- virtual void unregisterWithDispatcher() OVERRIDE;
- virtual bool hasLastData() OVERRIDE;
- virtual void didUpdateData() OVERRIDE;
- virtual void pageVisibilityChanged() OVERRIDE;
+ virtual void registerWithDispatcher() override;
+ virtual void unregisterWithDispatcher() override;
+ virtual bool hasLastData() override;
+ virtual void didUpdateData() override;
+ virtual void pageVisibilityChanged() override;
// DOMWindowLifecycleObserver
- virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
- virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
- virtual void didRemoveAllEventListeners(LocalDOMWindow*) OVERRIDE;
+ virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) override;
+ virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) override;
+ virtual void didRemoveAllEventListeners(LocalDOMWindow*) override;
PersistentWillBeMember<GamepadList> m_gamepads;
PersistentWillBeMember<WebKitGamepadList> m_webkitGamepads;
« no previous file with comments | « Source/modules/gamepad/GamepadList.h ('k') | Source/modules/gamepad/WebKitGamepad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698