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

Unified Diff: Source/core/fetch/ScriptResource.h

Issue 631223002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[fetch|fileapi] (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/fetch/ResourceLoaderSet.h ('k') | Source/core/fetch/StyleSheetResourceClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/ScriptResource.h
diff --git a/Source/core/fetch/ScriptResource.h b/Source/core/fetch/ScriptResource.h
index 7d90f20693431b09fc27da5c4e3aebcf1508e901..bb1179bb99301703cebb4764eaa6f4000884b445 100644
--- a/Source/core/fetch/ScriptResource.h
+++ b/Source/core/fetch/ScriptResource.h
@@ -37,20 +37,20 @@ class ScriptResourceClient : public ResourceClient {
public:
virtual ~ScriptResourceClient() { }
static ResourceClientType expectedType() { return ScriptType; }
- virtual ResourceClientType resourceClientType() const OVERRIDE FINAL { return expectedType(); }
+ virtual ResourceClientType resourceClientType() const override final { return expectedType(); }
virtual void notifyAppendData(ScriptResource* resource) { }
};
-class ScriptResource FINAL : public TextResource {
+class ScriptResource final : public TextResource {
public:
typedef ScriptResourceClient ClientType;
ScriptResource(const ResourceRequest&, const String& charset);
virtual ~ScriptResource();
- virtual void didAddClient(ResourceClient*) OVERRIDE;
- virtual void appendData(const char*, unsigned) OVERRIDE;
+ virtual void didAddClient(ResourceClient*) override;
+ virtual void appendData(const char*, unsigned) override;
const String& script();
« no previous file with comments | « Source/core/fetch/ResourceLoaderSet.h ('k') | Source/core/fetch/StyleSheetResourceClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698