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

Unified Diff: Source/core/html/imports/HTMLImportLoader.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/imports/HTMLImportChild.h ('k') | Source/core/html/imports/HTMLImportTreeRoot.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/imports/HTMLImportLoader.h
diff --git a/Source/core/html/imports/HTMLImportLoader.h b/Source/core/html/imports/HTMLImportLoader.h
index b0ac3700cf5cbbe43b499886d9ed9d0ea4d34d18..5844819a707e97ed1cc0c0f1847729b64ad499df 100644
--- a/Source/core/html/imports/HTMLImportLoader.h
+++ b/Source/core/html/imports/HTMLImportLoader.h
@@ -70,7 +70,7 @@ public:
return adoptPtrWillBeNoop(new HTMLImportLoader(controller));
}
- virtual ~HTMLImportLoader();
+ ~HTMLImportLoader() override;
void dispose();
Document* document() const { return m_document.get(); }
@@ -100,14 +100,14 @@ private:
HTMLImportLoader(HTMLImportsController*);
// RawResourceClient
- virtual void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
- virtual void dataReceived(Resource*, const char* data, unsigned length) override;
- virtual void notifyFinished(Resource*) override;
+ void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
+ void dataReceived(Resource*, const char* data, unsigned length) override;
+ void notifyFinished(Resource*) override;
// DocumentParserClient
// Called after document parse is complete after DOMContentLoaded was dispatched.
- virtual void notifyParserStopped() override;
+ void notifyParserStopped() override;
State startWritingAndParsing(const ResourceResponse&);
State finishWriting();
« no previous file with comments | « Source/core/html/imports/HTMLImportChild.h ('k') | Source/core/html/imports/HTMLImportTreeRoot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698