summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/graphics/filters/SVGFEImage.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/graphics/filters/SVGFEImage.h')
-rw-r--r--WebCore/svg/graphics/filters/SVGFEImage.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/WebCore/svg/graphics/filters/SVGFEImage.h b/WebCore/svg/graphics/filters/SVGFEImage.h
index 97a9cda..fe2d8c4 100644
--- a/WebCore/svg/graphics/filters/SVGFEImage.h
+++ b/WebCore/svg/graphics/filters/SVGFEImage.h
@@ -29,20 +29,21 @@
namespace WebCore {
- class FEImage : public FilterEffect {
- public:
- static PassRefPtr<FEImage> create(RefPtr<Image>, SVGPreserveAspectRatio);
-
- void apply(Filter*);
- void dump();
- TextStream& externalRepresentation(TextStream&, int indent) const;
-
- private:
- FEImage(RefPtr<Image>, SVGPreserveAspectRatio);
-
- RefPtr<Image> m_image;
- SVGPreserveAspectRatio m_preserveAspectRatio;
- };
+class FEImage : public FilterEffect {
+public:
+ static PassRefPtr<FEImage> create(RefPtr<Image>, const SVGPreserveAspectRatio&);
+
+ virtual void apply(Filter*);
+ virtual void dump();
+
+ virtual TextStream& externalRepresentation(TextStream&, int indention) const;
+
+private:
+ FEImage(RefPtr<Image>, const SVGPreserveAspectRatio&);
+
+ RefPtr<Image> m_image;
+ SVGPreserveAspectRatio m_preserveAspectRatio;
+};
} // namespace WebCore