summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/filters/FEBlend.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/filters/FEBlend.h')
-rw-r--r--WebCore/platform/graphics/filters/FEBlend.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/filters/FEBlend.h b/WebCore/platform/graphics/filters/FEBlend.h
index a6569e2..4c59578 100644
--- a/WebCore/platform/graphics/filters/FEBlend.h
+++ b/WebCore/platform/graphics/filters/FEBlend.h
@@ -40,18 +40,18 @@ enum BlendModeType {
class FEBlend : public FilterEffect {
public:
- static PassRefPtr<FEBlend> create(BlendModeType);
+ static PassRefPtr<FEBlend> create(Filter*, BlendModeType);
BlendModeType blendMode() const;
void setBlendMode(BlendModeType);
- virtual void apply(Filter*);
+ virtual void apply();
virtual void dump();
virtual TextStream& externalRepresentation(TextStream&, int indention) const;
private:
- FEBlend(BlendModeType);
+ FEBlend(Filter*, BlendModeType);
BlendModeType m_mode;
};