summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/Image.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/Image.h')
-rw-r--r--WebCore/platform/graphics/Image.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/Image.h b/WebCore/platform/graphics/Image.h
index 7c00b71..3c5e7fd 100644
--- a/WebCore/platform/graphics/Image.h
+++ b/WebCore/platform/graphics/Image.h
@@ -154,6 +154,9 @@ public:
static PassRefPtr<Image> loadPlatformThemeIcon(const char* name, int size);
#endif
+ virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const AffineTransform& patternTransform,
+ const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator, const FloatRect& destRect);
+
protected:
Image(ImageObserver* = 0);
@@ -171,9 +174,6 @@ protected:
virtual bool mayFillWithSolidColor() { return false; }
virtual Color solidColor() const { return Color(); }
- virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const AffineTransform& patternTransform,
- const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator, const FloatRect& destRect);
-
private:
RefPtr<SharedBuffer> m_data; // The encoded raw data for the image.
ImageObserver* m_imageObserver;