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

Unified Diff: Source/core/fetch/CSSStyleSheetResource.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 | « no previous file | Source/core/fetch/DocumentResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/CSSStyleSheetResource.h
diff --git a/Source/core/fetch/CSSStyleSheetResource.h b/Source/core/fetch/CSSStyleSheetResource.h
index 29b56303e135908f35c2c009334a2757c05bf359..2f4a48315eb06567ade9b607effbd5698b964b51 100644
--- a/Source/core/fetch/CSSStyleSheetResource.h
+++ b/Source/core/fetch/CSSStyleSheetResource.h
@@ -36,27 +36,27 @@ class CSSParserContext;
class ResourceClient;
class StyleSheetContents;
-class CSSStyleSheetResource FINAL : public StyleSheetResource {
+class CSSStyleSheetResource final : public StyleSheetResource {
public:
CSSStyleSheetResource(const ResourceRequest&, const String& charset);
virtual ~CSSStyleSheetResource();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
const String sheetText(bool enforceMIMEType = true, bool* hasValidMIMEType = 0) const;
- virtual void didAddClient(ResourceClient*) OVERRIDE;
+ virtual void didAddClient(ResourceClient*) override;
PassRefPtrWillBeRawPtr<StyleSheetContents> restoreParsedStyleSheet(const CSSParserContext&);
void saveParsedStyleSheet(PassRefPtrWillBeRawPtr<StyleSheetContents>);
protected:
- virtual bool isSafeToUnlock() const OVERRIDE;
- virtual void destroyDecodedDataIfPossible() OVERRIDE;
+ virtual bool isSafeToUnlock() const override;
+ virtual void destroyDecodedDataIfPossible() override;
private:
bool canUseSheet(bool enforceMIMEType, bool* hasValidMIMEType) const;
- virtual void dispose() OVERRIDE;
- virtual void checkNotify() OVERRIDE;
+ virtual void dispose() override;
+ virtual void checkNotify() override;
String m_decodedSheetText;
« no previous file with comments | « no previous file | Source/core/fetch/DocumentResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698