| 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;
 | 
|  
 | 
| 
 |