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

Unified Diff: Source/core/html/shadow/MediaControls.h

Issue 131793003: Update remaining HTML classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove useless FINAL Created 6 years, 11 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/core/html/shadow/MediaControls.h
diff --git a/Source/core/html/shadow/MediaControls.h b/Source/core/html/shadow/MediaControls.h
index 0a267bf15b1ec05fc98e9529a7c8e2a9c1be803a..5ac95b93205fbf65bbab778ee4499b35a3506533 100644
--- a/Source/core/html/shadow/MediaControls.h
+++ b/Source/core/html/shadow/MediaControls.h
@@ -95,9 +95,9 @@ class MediaControls : public HTMLDivElement {
protected:
explicit MediaControls(Document&);
- virtual void defaultEventHandler(Event*);
+ virtual void defaultEventHandler(Event*) OVERRIDE;
- virtual bool containsRelatedTarget(Event*);
+ bool containsRelatedTarget(Event*);
MediaControllerInterface* m_mediaController;
@@ -121,9 +121,9 @@ protected:
bool m_isMouseOverControls;
private:
- virtual bool isMediaControls() const { return true; }
+ virtual bool isMediaControls() const OVERRIDE FINAL { return true; }
- virtual const AtomicString& shadowPseudoId() const;
+ virtual const AtomicString& shadowPseudoId() const OVERRIDE;
};
DEFINE_NODE_TYPE_CASTS(MediaControls, isMediaControls());
« no previous file with comments | « Source/core/html/shadow/MediaControlElements.h ('k') | Source/core/html/shadow/MediaControlsChromiumAndroid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698