| 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();
|
|
|