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

Unified Diff: Source/core/html/track/TextTrackCue.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/track/TextTrackContainer.h ('k') | Source/core/html/track/TextTrackList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrackCue.h
diff --git a/Source/core/html/track/TextTrackCue.h b/Source/core/html/track/TextTrackCue.h
index 2c8cc769de0a9a67262aa5e77b5b42c326de29ea..4402104f5f10314e8aace06a582e2b717346ddb6 100644
--- a/Source/core/html/track/TextTrackCue.h
+++ b/Source/core/html/track/TextTrackCue.h
@@ -51,7 +51,7 @@ public:
return cue;
}
- virtual ~TextTrackCue() { }
+ ~TextTrackCue() override { }
TextTrack* track() const;
void setTrack(TextTrack*);
@@ -75,7 +75,7 @@ public:
void invalidateCueIndex();
using EventTarget::dispatchEvent;
- virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
bool isActive() const { return m_isActive; }
void setIsActive(bool active) { m_isActive = active; }
@@ -96,7 +96,7 @@ public:
};
virtual void removeDisplayTree(RemovalNotification = NotifyRegion) = 0;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
#ifndef NDEBUG
virtual String toString() const = 0;
« no previous file with comments | « Source/core/html/track/TextTrackContainer.h ('k') | Source/core/html/track/TextTrackList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698