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

Unified Diff: Source/core/html/shadow/MediaControlElementTypes.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/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 fe63e7c81d7612d8a78beb1245bae650a6eddc95..bba34c70a22df8236f10ad4baabe8f18c6b12605 100644
--- a/Source/core/html/shadow/MediaControlElementTypes.h
+++ b/Source/core/html/shadow/MediaControlElementTypes.h
@@ -104,10 +104,10 @@ private:
class MediaControlDivElement : public HTMLDivElement, public MediaControlElement {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaControlDivElement);
public:
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
- virtual bool isMediaControlElement() const OVERRIDE FINAL { return true; }
+ virtual bool isMediaControlElement() const override final { return true; }
MediaControlDivElement(MediaControls&, MediaControlElementType);
};
@@ -116,15 +116,15 @@ protected:
class MediaControlInputElement : public HTMLInputElement, public MediaControlElement {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaControlInputElement);
public:
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
- virtual bool isMediaControlElement() const OVERRIDE FINAL { return true; }
+ virtual bool isMediaControlElement() const override final { return true; }
MediaControlInputElement(MediaControls&, MediaControlElementType);
private:
virtual void updateDisplayType() { }
- virtual bool isMouseFocusable() const OVERRIDE;
+ virtual 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