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

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

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 ea44deeb399119a837484573f71addcf67be2e75..07bff387f8a46d1ecf0c46672079124ecfd8756a 100644
--- a/Source/core/html/MediaController.h
+++ b/Source/core/html/MediaController.h
@@ -44,7 +44,7 @@ class MediaController final : public EventTargetWithInlineData, public RefCounte
REFCOUNTED_EVENT_TARGET(MediaController);
public:
static PassRefPtrWillBeRawPtr<MediaController> create(ExecutionContext*);
- virtual ~MediaController();
+ ~MediaController() override;
void addMediaElement(HTMLMediaElement*);
void removeMediaElement(HTMLMediaElement*);
@@ -104,8 +104,8 @@ private:
void startTimeupdateTimer();
// EventTarget
- virtual const AtomicString& interfaceName() const override;
- virtual ExecutionContext* executionContext() const override { return m_executionContext; }
+ const AtomicString& interfaceName() const override;
+ 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