summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/graphics/filters/SVGFEMorphology.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/graphics/filters/SVGFEMorphology.h')
-rw-r--r--WebCore/svg/graphics/filters/SVGFEMorphology.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/WebCore/svg/graphics/filters/SVGFEMorphology.h b/WebCore/svg/graphics/filters/SVGFEMorphology.h
index 79f292d..9743d2b 100644
--- a/WebCore/svg/graphics/filters/SVGFEMorphology.h
+++ b/WebCore/svg/graphics/filters/SVGFEMorphology.h
@@ -36,7 +36,7 @@ namespace WebCore {
class FEMorphology : public FilterEffect {
public:
- static PassRefPtr<FEMorphology> create(FilterEffect*, MorphologyOperatorType, float radiusX, float radiusY);
+ static PassRefPtr<FEMorphology> create(MorphologyOperatorType, float radiusX, float radiusY);
MorphologyOperatorType morphologyOperator() const;
void setMorphologyOperator(MorphologyOperatorType);
@@ -46,15 +46,13 @@ namespace WebCore {
float radiusY() const;
void setRadiusY(float);
- virtual FloatRect uniteChildEffectSubregions(Filter* filter) { return calculateUnionOfChildEffectSubregions(filter, m_in.get()); }
void apply(Filter*);
void dump();
TextStream& externalRepresentation(TextStream&, int indent) const;
private:
- FEMorphology(FilterEffect*, MorphologyOperatorType, float radiusX, float radiusY);
+ FEMorphology(MorphologyOperatorType, float radiusX, float radiusY);
- RefPtr<FilterEffect> m_in;
MorphologyOperatorType m_type;
float m_radiusX;
float m_radiusY;