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

Unified Diff: Source/core/html/LinkManifest.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/LabelsNodeList.h ('k') | Source/core/html/MediaController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/LinkManifest.h
diff --git a/Source/core/html/LinkManifest.h b/Source/core/html/LinkManifest.h
index e2fb075e65309461c8ac8c71383113db042ad0e6..528e0a67695c5a8728a6e6a3d8f157dbd9955e77 100644
--- a/Source/core/html/LinkManifest.h
+++ b/Source/core/html/LinkManifest.h
@@ -14,7 +14,7 @@ namespace blink {
class HTMLLinkElement;
-class LinkManifest FINAL : public LinkResource {
+class LinkManifest final : public LinkResource {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
@@ -23,10 +23,10 @@ public:
virtual ~LinkManifest();
// LinkResource
- virtual void process() OVERRIDE;
- virtual Type type() const OVERRIDE { return Manifest; }
- virtual bool hasLoaded() const OVERRIDE;
- virtual void ownerRemoved() OVERRIDE;
+ virtual void process() override;
+ virtual Type type() const override { return Manifest; }
+ virtual bool hasLoaded() const override;
+ virtual void ownerRemoved() override;
private:
explicit LinkManifest(HTMLLinkElement* owner);
« no previous file with comments | « Source/core/html/LabelsNodeList.h ('k') | Source/core/html/MediaController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698