| Index: Source/core/fetch/StyleSheetResourceClient.h
|
| diff --git a/Source/core/fetch/StyleSheetResourceClient.h b/Source/core/fetch/StyleSheetResourceClient.h
|
| index bde2093d3f18baa558f600352c837cad70c69471..4e3c46e98c72dbf7f3a94be649b31d607b5d9519 100644
|
| --- a/Source/core/fetch/StyleSheetResourceClient.h
|
| +++ b/Source/core/fetch/StyleSheetResourceClient.h
|
| @@ -35,11 +35,11 @@ class CSSStyleSheetResource;
|
|
|
| class StyleSheetResourceClient : public ResourceClient {
|
| public:
|
| - virtual ~StyleSheetResourceClient() { }
|
| + ~StyleSheetResourceClient() override {}
|
| static ResourceClientType expectedType() { return StyleSheetType; }
|
| - virtual ResourceClientType resourceClientType() const override final { return expectedType(); }
|
| - virtual void setCSSStyleSheet(const String& /* href */, const KURL& /* baseURL */, const String& /* charset */, const CSSStyleSheetResource*) { }
|
| - virtual void setXSLStyleSheet(const String& /* href */, const KURL& /* baseURL */, const String& /* sheet */) { }
|
| + ResourceClientType resourceClientType() const final { return expectedType(); }
|
| + virtual void setCSSStyleSheet(const String& /* href */, const KURL& /* baseURL */, const String& /* charset */, const CSSStyleSheetResource*) {}
|
| + virtual void setXSLStyleSheet(const String& /* href */, const KURL& /* baseURL */, const String& /* sheet */) {}
|
| };
|
|
|
| }
|
|
|