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

Unified Diff: Source/core/html/HTMLTrackElement.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/HTMLTitleElement.h ('k') | Source/core/html/HTMLUListElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLTrackElement.h
diff --git a/Source/core/html/HTMLTrackElement.h b/Source/core/html/HTMLTrackElement.h
index d4e08fe157ae370562d658ce452fc0e0f7ba2f9f..67541b52af49851afb17abb9c4a075987978ca9c 100644
--- a/Source/core/html/HTMLTrackElement.h
+++ b/Source/core/html/HTMLTrackElement.h
@@ -59,19 +59,19 @@ public:
private:
explicit HTMLTrackElement(Document&);
- virtual ~HTMLTrackElement();
+ ~HTMLTrackElement() override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void removedFrom(ContainerNode*) override;
- virtual bool isURLAttribute(const Attribute&) const override;
+ void removedFrom(ContainerNode*) override;
+ bool isURLAttribute(const Attribute&) const override;
// TextTrackLoaderClient
- virtual void newCuesAvailable(TextTrackLoader*) override;
- virtual void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) override;
- virtual void newRegionsAvailable(TextTrackLoader*) override;
+ void newCuesAvailable(TextTrackLoader*) override;
+ void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) override;
+ void newRegionsAvailable(TextTrackLoader*) override;
void setReadyState(ReadyState);
« no previous file with comments | « Source/core/html/HTMLTitleElement.h ('k') | Source/core/html/HTMLUListElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698