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

Unified Diff: Source/core/html/imports/LinkImport.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/HTMLImportTreeRoot.h ('k') | Source/core/html/parser/HTMLDocumentParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/imports/LinkImport.h
diff --git a/Source/core/html/imports/LinkImport.h b/Source/core/html/imports/LinkImport.h
index 44031838c91c71794cf614675769f9b84707afc1..bfd0c0a28c7953ad0688b81fc20906a5787112b4 100644
--- a/Source/core/html/imports/LinkImport.h
+++ b/Source/core/html/imports/LinkImport.h
@@ -53,20 +53,20 @@ public:
static PassOwnPtrWillBeRawPtr<LinkImport> create(HTMLLinkElement* owner);
explicit LinkImport(HTMLLinkElement* owner);
- virtual ~LinkImport();
+ ~LinkImport() override;
// LinkResource
- virtual void process() override;
- virtual Type type() const override { return Import; }
- virtual bool hasLoaded() const override;
+ void process() override;
+ Type type() const override { return Import; }
+ bool hasLoaded() const override;
DECLARE_VIRTUAL_TRACE();
- virtual void ownerInserted() override;
+ void ownerInserted() override;
// HTMLImportChildClient
- virtual void didFinish() override;
- virtual void importChildWasDisposed(HTMLImportChild*) override;
- virtual bool isSync() const override;
- virtual HTMLLinkElement* link() override;
+ void didFinish() override;
+ void importChildWasDisposed(HTMLImportChild*) override;
+ bool isSync() const override;
+ HTMLLinkElement* link() override;
Document* importedDocument() const;
« no previous file with comments | « Source/core/html/imports/HTMLImportTreeRoot.h ('k') | Source/core/html/parser/HTMLDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698