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

Unified Diff: Source/core/html/shadow/MediaControls.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/MediaControlElements.h ('k') | Source/core/html/shadow/MeterShadowElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/MediaControls.h
diff --git a/Source/core/html/shadow/MediaControls.h b/Source/core/html/shadow/MediaControls.h
index 8ec64fe07ec00139ef5415dd937cff15540678f2..8da8ff7940d5bd5a7077a47d80d4219dafde7011 100644
--- a/Source/core/html/shadow/MediaControls.h
+++ b/Source/core/html/shadow/MediaControls.h
@@ -34,7 +34,7 @@ namespace blink {
class Event;
-class MediaControls FINAL : public HTMLDivElement {
+class MediaControls final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<MediaControls> create(HTMLMediaElement&);
@@ -72,7 +72,7 @@ public:
void mediaElementFocused();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit MediaControls(HTMLMediaElement&);
@@ -101,13 +101,13 @@ private:
void hideTextTrackDisplay();
// Node
- virtual bool isMediaControls() const OVERRIDE { return true; }
- virtual bool willRespondToMouseMoveEvents() OVERRIDE { return true; }
- virtual void defaultEventHandler(Event*) OVERRIDE;
+ virtual bool isMediaControls() const override { return true; }
+ virtual bool willRespondToMouseMoveEvents() override { return true; }
+ virtual void defaultEventHandler(Event*) override;
bool containsRelatedTarget(Event*);
// Element
- virtual const AtomicString& shadowPseudoId() const OVERRIDE;
+ virtual const AtomicString& shadowPseudoId() const override;
RawPtrWillBeMember<HTMLMediaElement> m_mediaElement;
« no previous file with comments | « Source/core/html/shadow/MediaControlElements.h ('k') | Source/core/html/shadow/MeterShadowElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698