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

Unified Diff: Source/core/loader/TextTrackLoader.h

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/loader/SinkDocument.cpp ('k') | Source/core/loader/WorkerLoaderClientBridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/TextTrackLoader.h
diff --git a/Source/core/loader/TextTrackLoader.h b/Source/core/loader/TextTrackLoader.h
index f5dbdea0963a0735e43fadc2eec47ad44c3aedba..d18863c19df266eb7f4afe2c829435ef16f1e3ac 100644
--- a/Source/core/loader/TextTrackLoader.h
+++ b/Source/core/loader/TextTrackLoader.h
@@ -40,7 +40,7 @@ class TextTrackLoader;
class TextTrackLoaderClient : public ResourceOwner<RawResource> {
public:
- virtual ~TextTrackLoaderClient() { }
+ ~TextTrackLoaderClient() override {}
virtual void newCuesAvailable(TextTrackLoader*) = 0;
virtual void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) = 0;
@@ -55,7 +55,7 @@ public:
{
return adoptPtrWillBeNoop(new TextTrackLoader(client, document));
}
- virtual ~TextTrackLoader();
+ ~TextTrackLoader() override;
bool load(const KURL&, const AtomicString& crossOriginMode);
void cancelLoad();
@@ -70,13 +70,13 @@ public:
private:
// RawResourceClient
- virtual void dataReceived(Resource*, const char* data, unsigned length) override;
- virtual void notifyFinished(Resource*) override;
+ void dataReceived(Resource*, const char* data, unsigned length) override;
+ void notifyFinished(Resource*) override;
// VTTParserClient
- virtual void newCuesParsed() override;
- virtual void newRegionsParsed() override;
- virtual void fileFailedToParse() override;
+ void newCuesParsed() override;
+ void newRegionsParsed() override;
+ void fileFailedToParse() override;
TextTrackLoader(TextTrackLoaderClient&, Document&);
« no previous file with comments | « Source/core/loader/SinkDocument.cpp ('k') | Source/core/loader/WorkerLoaderClientBridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698