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

Unified Diff: Source/core/fetch/XSLStyleSheetResource.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/ShaderResource.h ('k') | Source/core/loader/DocumentLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/XSLStyleSheetResource.h
diff --git a/Source/core/fetch/XSLStyleSheetResource.h b/Source/core/fetch/XSLStyleSheetResource.h
index 353b9da6a84908c3731ad347631b438b7d22604c..80712973d1194be7e0ecd7ecf8db448ca0e5500a 100644
--- a/Source/core/fetch/XSLStyleSheetResource.h
+++ b/Source/core/fetch/XSLStyleSheetResource.h
@@ -34,18 +34,18 @@ namespace WebCore {
class ResourceFetcher;
class TextResourceDecoder;
-class XSLStyleSheetResource : public StyleSheetResource {
+class XSLStyleSheetResource FINAL : public StyleSheetResource {
public:
XSLStyleSheetResource(const ResourceRequest&);
const String& sheet() const { return m_sheet; }
- virtual void didAddClient(ResourceClient*);
- virtual void setEncoding(const String&);
- virtual String encoding() const;
+ virtual void didAddClient(ResourceClient*) OVERRIDE;
+ virtual void setEncoding(const String&) OVERRIDE;
+ virtual String encoding() const OVERRIDE;
protected:
- virtual void checkNotify();
+ virtual void checkNotify() OVERRIDE;
String m_sheet;
OwnPtr<TextResourceDecoder> m_decoder;
« no previous file with comments | « Source/core/fetch/ShaderResource.h ('k') | Source/core/loader/DocumentLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698