| Index: Source/core/svg/SVGFEColorMatrixElement.cpp
|
| diff --git a/Source/core/svg/SVGFEColorMatrixElement.cpp b/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| index 333d4870dbd35cf0f065b243e47102457d8ffc82..e1cddccd1b93bb3c74d46136d3426f16b84c97b5 100644
|
| --- a/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| +++ b/Source/core/svg/SVGFEColorMatrixElement.cpp
|
| @@ -40,7 +40,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<ColorMatrix
|
| return entries;
|
| }
|
|
|
| -SVGFEColorMatrixElement::SVGFEColorMatrixElement(Document& document)
|
| +inline SVGFEColorMatrixElement::SVGFEColorMatrixElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feColorMatrixTag, document)
|
| , m_values(SVGAnimatedNumberList::create(this, SVGNames::valuesAttr, SVGNumberList::create()))
|
| , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
|
| @@ -53,6 +53,8 @@ SVGFEColorMatrixElement::SVGFEColorMatrixElement(Document& document)
|
| addToPropertyMap(m_type);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEColorMatrixElement)
|
| +
|
| bool SVGFEColorMatrixElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|