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

Unified Diff: Source/modules/screen_orientation/ScreenOrientationController.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (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
Index: Source/modules/screen_orientation/ScreenOrientationController.h
diff --git a/Source/modules/screen_orientation/ScreenOrientationController.h b/Source/modules/screen_orientation/ScreenOrientationController.h
index 0693296f21a15f6c8c39f61139a037cfb05945cd..c3ec63a357360d9b4dd243f88e125b86c72c09b2 100644
--- a/Source/modules/screen_orientation/ScreenOrientationController.h
+++ b/Source/modules/screen_orientation/ScreenOrientationController.h
@@ -19,7 +19,7 @@ class FrameView;
class ScreenOrientation;
class WebScreenOrientationClient;
-class ScreenOrientationController FINAL
+class ScreenOrientationController final
: public NoBaseWillBeGarbageCollectedFinalized<ScreenOrientationController>
, public WillBeHeapSupplement<LocalFrame>
, public FrameDestructionObserver
@@ -39,18 +39,18 @@ public:
static ScreenOrientationController* from(LocalFrame&);
static const char* supplementName();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit ScreenOrientationController(LocalFrame&, WebScreenOrientationClient*);
static WebScreenOrientationType computeOrientation(FrameView*);
// Inherited from PlatformEventController.
- virtual void didUpdateData() OVERRIDE;
- virtual void registerWithDispatcher() OVERRIDE;
- virtual void unregisterWithDispatcher() OVERRIDE;
- virtual bool hasLastData() OVERRIDE;
- virtual void pageVisibilityChanged() OVERRIDE;
+ virtual void didUpdateData() override;
+ virtual void registerWithDispatcher() override;
+ virtual void unregisterWithDispatcher() override;
+ virtual bool hasLastData() override;
+ virtual void pageVisibilityChanged() override;
void notifyDispatcher();
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientation.h ('k') | Source/modules/screen_orientation/ScreenOrientationDispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698