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

Unified Diff: Source/core/html/imports/LinkImport.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/HTMLImportsController.h ('k') | Source/core/html/parser/HTMLConstructionSite.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 dc19c861982e83fce47a6dd5433b80a55290002f..64d7a09d879c126b1c29e7a9f2fffb6e05236475 100644
--- a/Source/core/html/imports/LinkImport.h
+++ b/Source/core/html/imports/LinkImport.h
@@ -45,7 +45,7 @@ class HTMLImportChild;
//
// A LinkResource subclasss used for @rel=import.
//
-class LinkImport FINAL : public LinkResource, public HTMLImportChildClient {
+class LinkImport final : public LinkResource, public HTMLImportChildClient {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LinkImport);
public:
@@ -56,19 +56,19 @@ public:
virtual ~LinkImport();
// LinkResource
- virtual void process() OVERRIDE;
- virtual Type type() const OVERRIDE { return Import; }
- virtual bool hasLoaded() const OVERRIDE;
- virtual void trace(Visitor*) OVERRIDE;
- virtual void ownerInserted() OVERRIDE;
+ virtual void process() override;
+ virtual Type type() const override { return Import; }
+ virtual bool hasLoaded() const override;
+ virtual void trace(Visitor*) override;
+ virtual void ownerInserted() override;
// HTMLImportChildClient
- virtual void didFinish() OVERRIDE;
+ virtual void didFinish() override;
#if !ENABLE(OILPAN)
- virtual void importChildWasDestroyed(HTMLImportChild*) OVERRIDE;
+ virtual void importChildWasDestroyed(HTMLImportChild*) override;
#endif
- virtual bool isSync() const OVERRIDE;
- virtual HTMLLinkElement* link() OVERRIDE;
+ virtual bool isSync() const override;
+ virtual HTMLLinkElement* link() override;
Document* importedDocument() const;
« no previous file with comments | « Source/core/html/imports/HTMLImportsController.h ('k') | Source/core/html/parser/HTMLConstructionSite.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698