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