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

Unified Diff: Source/core/html/track/LoadableTextTrack.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/InbandTextTrack.h ('k') | Source/core/html/track/TextTrack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/LoadableTextTrack.h
diff --git a/Source/core/html/track/LoadableTextTrack.h b/Source/core/html/track/LoadableTextTrack.h
index e1468e9817f1b2b8a57fe31a7cc5a15ce3eafd03..d68174e13f1a2f2a56453038d0d86ecd138274a2 100644
--- a/Source/core/html/track/LoadableTextTrack.h
+++ b/Source/core/html/track/LoadableTextTrack.h
@@ -40,10 +40,10 @@ public:
{
return adoptRefWillBeNoop(new LoadableTextTrack(track));
}
- virtual ~LoadableTextTrack();
+ ~LoadableTextTrack() override;
// TextTrack method.
- virtual void setMode(const AtomicString&) override;
+ void setMode(const AtomicString&) override;
void addRegions(const WillBeHeapVector<RefPtrWillBeMember<VTTRegion>>&);
using TextTrack::addListOfCues;
@@ -54,7 +54,7 @@ public:
void clearTrackElement();
#endif
- virtual bool isDefault() const override;
+ bool isDefault() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/html/track/InbandTextTrack.h ('k') | Source/core/html/track/TextTrack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698