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

Unified Diff: Source/core/dom/Fullscreen.h

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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/core/dom/ExecutionContextTask.h ('k') | Source/core/dom/IdTargetObserverRegistry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Fullscreen.h
diff --git a/Source/core/dom/Fullscreen.h b/Source/core/dom/Fullscreen.h
index 723d8cf64934eeb7f5b33e3ebd1e949c56b23e09..b9a1351a33d7271681c9b3fdf48f62e71faa71f6 100644
--- a/Source/core/dom/Fullscreen.h
+++ b/Source/core/dom/Fullscreen.h
@@ -43,7 +43,7 @@ namespace blink {
class RenderFullScreen;
class RenderStyle;
-class Fullscreen FINAL
+class Fullscreen final
: public NoBaseWillBeGarbageCollectedFinalized<Fullscreen>
, public DocumentSupplement
, public DocumentLifecycleObserver {
@@ -86,12 +86,12 @@ public:
bool webkitFullScreenKeyboardInputAllowed() const { return m_fullScreenElement.get() && m_areKeysEnabledInFullScreen; }
Element* webkitCurrentFullScreenElement() const { return m_fullScreenElement.get(); }
- virtual void documentWasDetached() OVERRIDE;
+ virtual void documentWasDetached() override;
#if !ENABLE(OILPAN)
- virtual void documentWasDisposed() OVERRIDE;
+ virtual void documentWasDisposed() override;
#endif
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
static Fullscreen* fromIfExistsSlow(Document&);
« no previous file with comments | « Source/core/dom/ExecutionContextTask.h ('k') | Source/core/dom/IdTargetObserverRegistry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698