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

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

Issue 134443002: Update fetch / loader classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No OVERRIDE / FINAL in web Created 6 years, 11 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/ResourceLoader.h ('k') | Source/core/fetch/ShaderResource.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 09502e3eddf8b2abd30cb567b0eadc824a257709..28f62253b34a438003de23c482838c64bc8b8d15 100644
--- a/Source/core/fetch/ScriptResource.h
+++ b/Source/core/fetch/ScriptResource.h
@@ -33,7 +33,7 @@ namespace WebCore {
class ResourceFetcher;
class TextResourceDecoder;
-class ScriptResource : public Resource {
+class ScriptResource FINAL : public Resource {
public:
typedef ResourceClient ClientType;
@@ -42,8 +42,8 @@ public:
const String& script();
- virtual void setEncoding(const String&);
- virtual String encoding() const;
+ virtual void setEncoding(const String&) OVERRIDE;
+ virtual String encoding() const OVERRIDE;
AtomicString mimeType() const;
bool mimeTypeAllowedByNosniff() const;
« no previous file with comments | « Source/core/fetch/ResourceLoader.h ('k') | Source/core/fetch/ShaderResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698