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

Unified Diff: Source/core/html/shadow/MediaControlElementTypes.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/shadow/DetailsMarkerControl.h ('k') | Source/core/html/shadow/MediaControlElements.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 e80b9eb68a13e6f157ca1e37dea2dd5fca56673a..09ad25fe82421f4fb91c91483cb4f623a241aef4 100644
--- a/Source/core/html/shadow/MediaControlElementTypes.h
+++ b/Source/core/html/shadow/MediaControlElementTypes.h
@@ -108,7 +108,7 @@ protected:
MediaControlDivElement(MediaControls&, MediaControlElementType);
private:
- virtual bool isMediaControlElement() const override final { return true; }
+ bool isMediaControlElement() const final { return true; }
};
// ----------------------------
@@ -123,8 +123,8 @@ protected:
private:
virtual void updateDisplayType() { }
- virtual bool isMediaControlElement() const override final { return true; }
- virtual bool isMouseFocusable() const override;
+ bool isMediaControlElement() const final { return true; }
+ bool isMouseFocusable() const override;
};
// ----------------------------
« no previous file with comments | « Source/core/html/shadow/DetailsMarkerControl.h ('k') | Source/core/html/shadow/MediaControlElements.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698