diff options
Diffstat (limited to 'Source/WebCore/loader/cache/CachedSVGDocumentClient.h')
-rw-r--r-- | Source/WebCore/loader/cache/CachedSVGDocumentClient.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Source/WebCore/loader/cache/CachedSVGDocumentClient.h b/Source/WebCore/loader/cache/CachedSVGDocumentClient.h index a01e0aee9..499dcd10e 100644 --- a/Source/WebCore/loader/cache/CachedSVGDocumentClient.h +++ b/Source/WebCore/loader/cache/CachedSVGDocumentClient.h @@ -20,26 +20,17 @@ Boston, MA 02110-1301, USA. */ -#ifndef CachedSVGDocumentClient_h -#define CachedSVGDocumentClient_h - -#if ENABLE(SVG) +#pragma once #include "CachedResourceClient.h" namespace WebCore { -class CachedSVGDocument; - class CachedSVGDocumentClient : public CachedResourceClient { public: virtual ~CachedSVGDocumentClient() { } static CachedResourceClientType expectedType() { return SVGDocumentType; } - virtual CachedResourceClientType resourceClientType() const override { return expectedType(); } + CachedResourceClientType resourceClientType() const override { return expectedType(); } }; } // namespace WebCore - -#endif // ENABLE(SVG) - -#endif // CachedSVGDocumentClient_h |