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

Unified Diff: Source/core/html/MediaController.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (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/html/LinkManifest.h ('k') | Source/core/html/MediaDocument.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/MediaController.h
diff --git a/Source/core/html/MediaController.h b/Source/core/html/MediaController.h
index ca92367a74892d584c337fd0e3e9a4b5f66e02d1..8bd1e9fadec7c98b9d589bdf5613395cb29c6b6a 100644
--- a/Source/core/html/MediaController.h
+++ b/Source/core/html/MediaController.h
@@ -39,7 +39,7 @@ class ExceptionState;
class ExecutionContext;
class GenericEventQueue;
-class MediaController FINAL : public RefCountedWillBeGarbageCollectedFinalized<MediaController>, public EventTargetWithInlineData {
+class MediaController final : public RefCountedWillBeGarbageCollectedFinalized<MediaController>, public EventTargetWithInlineData {
DEFINE_WRAPPERTYPEINFO();
REFCOUNTED_EVENT_TARGET(MediaController);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaController);
@@ -88,7 +88,7 @@ public:
void clearExecutionContext() { m_executionContext = nullptr; }
#endif
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
MediaController(ExecutionContext*);
@@ -105,8 +105,8 @@ private:
void startTimeupdateTimer();
// EventTarget
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual ExecutionContext* executionContext() const OVERRIDE { return m_executionContext; }
+ virtual const AtomicString& interfaceName() const override;
+ virtual ExecutionContext* executionContext() const override { return m_executionContext; }
friend class HTMLMediaElement;
friend class MediaControllerEventListener;
« no previous file with comments | « Source/core/html/LinkManifest.h ('k') | Source/core/html/MediaDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698