diff options
Diffstat (limited to 'WebCore/svg/SVGFEFloodElement.h')
-rw-r--r-- | WebCore/svg/SVGFEFloodElement.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/WebCore/svg/SVGFEFloodElement.h b/WebCore/svg/SVGFEFloodElement.h index 046f418..4a4cffc 100644 --- a/WebCore/svg/SVGFEFloodElement.h +++ b/WebCore/svg/SVGFEFloodElement.h @@ -23,9 +23,9 @@ #ifndef SVGFEFloodElement_h #define SVGFEFloodElement_h -#if ENABLE(SVG) && ENABLE(SVG_FILTERS) -#include "SVGFilterPrimitiveStandardAttributes.h" +#if ENABLE(SVG) && ENABLE(FILTERS) #include "SVGFEFlood.h" +#include "SVGFilterPrimitiveStandardAttributes.h" namespace WebCore { @@ -36,11 +36,10 @@ namespace WebCore virtual ~SVGFEFloodElement(); virtual void parseMappedAttribute(MappedAttribute*); - virtual SVGFilterEffect* filterEffect(SVGResourceFilter*) const; - bool build(FilterBuilder*); + virtual bool build(SVGResourceFilter*); private: - mutable RefPtr<FEFlood> m_filterEffect; + ANIMATED_PROPERTY_DECLARATIONS(SVGFEFloodElement, SVGNames::feFloodTagString, SVGNames::inAttrString, String, In1, in1) }; } // namespace WebCore |