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

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

Issue 699703002: Clean up virtual function in Source/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/forms/RadioInputType.h ('k') | Source/core/html/track/InbandTextTrack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/MediaControlElementTypes.h
diff --git a/Source/core/html/shadow/MediaControlElementTypes.h b/Source/core/html/shadow/MediaControlElementTypes.h
index bba34c70a22df8236f10ad4baabe8f18c6b12605..66d81cadd9c55f42c6a0bc5ab9225d34d45a1abd 100644
--- a/Source/core/html/shadow/MediaControlElementTypes.h
+++ b/Source/core/html/shadow/MediaControlElementTypes.h
@@ -107,8 +107,10 @@ public:
virtual void trace(Visitor*) override;
protected:
- virtual bool isMediaControlElement() const override final { return true; }
MediaControlDivElement(MediaControls&, MediaControlElementType);
+
+private:
+ virtual bool isMediaControlElement() const override final { return true; }
};
// ----------------------------
@@ -119,11 +121,11 @@ public:
virtual void trace(Visitor*) override;
protected:
- virtual bool isMediaControlElement() const override final { return true; }
MediaControlInputElement(MediaControls&, MediaControlElementType);
private:
virtual void updateDisplayType() { }
+ virtual bool isMediaControlElement() const override final { return true; }
virtual bool isMouseFocusable() const override;
};
« no previous file with comments | « Source/core/html/forms/RadioInputType.h ('k') | Source/core/html/track/InbandTextTrack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698