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

Unified Diff: Source/core/fetch/XSLStyleSheetResource.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/TextResource.h ('k') | Source/core/fileapi/Blob.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 402052c6cdc20a2ce22c9337ae4b391b3e06c656..4b4e4f498a3fa38dac7ba341dcf2c5b1ab95765e 100644
--- a/Source/core/fetch/XSLStyleSheetResource.h
+++ b/Source/core/fetch/XSLStyleSheetResource.h
@@ -31,16 +31,16 @@
namespace blink {
-class XSLStyleSheetResource FINAL : public StyleSheetResource {
+class XSLStyleSheetResource final : public StyleSheetResource {
public:
XSLStyleSheetResource(const ResourceRequest&, const String& charset);
const String& sheet() const { return m_sheet; }
- virtual void didAddClient(ResourceClient*) OVERRIDE;
+ virtual void didAddClient(ResourceClient*) override;
protected:
- virtual void checkNotify() OVERRIDE;
+ virtual void checkNotify() override;
String m_sheet;
};
« no previous file with comments | « Source/core/fetch/TextResource.h ('k') | Source/core/fileapi/Blob.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698