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

Unified Diff: Source/modules/screen_orientation/ScreenOrientation.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/ScreenOrientation.h
diff --git a/Source/modules/screen_orientation/ScreenOrientation.h b/Source/modules/screen_orientation/ScreenOrientation.h
index 66ed21ae80feeefa6061c4b65cad989789b50a99..58ba47f9eecdfca071f61205d6047518da2b18d8 100644
--- a/Source/modules/screen_orientation/ScreenOrientation.h
+++ b/Source/modules/screen_orientation/ScreenOrientation.h
@@ -21,7 +21,7 @@ class ScriptPromise;
class ScriptState;
class ScreenOrientationController;
-class ScreenOrientation FINAL
+class ScreenOrientation final
: public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<ScreenOrientation>
, public EventTargetWithInlineData
, public DOMWindowProperty {
@@ -34,8 +34,8 @@ public:
virtual ~ScreenOrientation();
// EventTarget implementation.
- virtual const WTF::AtomicString& interfaceName() const OVERRIDE;
- virtual ExecutionContext* executionContext() const OVERRIDE;
+ virtual const WTF::AtomicString& interfaceName() const override;
+ virtual ExecutionContext* executionContext() const override;
String type() const;
unsigned short angle() const;
@@ -51,7 +51,7 @@ public:
// Helper being used by this class and LockOrientationCallback.
static const AtomicString& orientationTypeToString(WebScreenOrientationType);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit ScreenOrientation(LocalFrame*);

Powered by Google App Engine
This is Rietveld 408576698