summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSImageValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/CSSImageValue.h')
-rw-r--r--WebCore/css/CSSImageValue.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/WebCore/css/CSSImageValue.h b/WebCore/css/CSSImageValue.h
index a9c8c9b..833d7fe 100644
--- a/WebCore/css/CSSImageValue.h
+++ b/WebCore/css/CSSImageValue.h
@@ -41,8 +41,6 @@ public:
// Returns a StyleCachedImage if the image is cached already, otherwise a StylePendingImage.
StyleImage* cachedOrPendingImage();
- virtual bool isImageValue() const { return true; }
-
protected:
CSSImageValue(const String& url);
@@ -52,6 +50,7 @@ protected:
private:
CSSImageValue();
+ virtual bool isImageValue() const { return true; }
RefPtr<StyleImage> m_image;
bool m_accessedImage;