Index: Source/core/svg/SVGFEConvolveMatrixElement.cpp |
diff --git a/Source/core/svg/SVGFEConvolveMatrixElement.cpp b/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
index 88e8396c19c8b8abdcbe6c6e71473228d56e1d66..43c5e0b22e646d05816d8b1a0bfd175e73360f31 100644 |
--- a/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
+++ b/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
@@ -42,7 +42,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<EdgeModeTyp |
return entries; |
} |
-SVGFEConvolveMatrixElement::SVGFEConvolveMatrixElement(Document& document) |
+inline SVGFEConvolveMatrixElement::SVGFEConvolveMatrixElement(Document& document) |
: SVGFilterPrimitiveStandardAttributes(SVGNames::feConvolveMatrixTag, document) |
, m_bias(SVGAnimatedNumber::create(this, SVGNames::biasAttr, SVGNumber::create())) |
, m_divisor(SVGAnimatedNumber::create(this, SVGNames::divisorAttr, SVGNumber::create())) |
@@ -69,6 +69,8 @@ SVGFEConvolveMatrixElement::SVGFEConvolveMatrixElement(Document& document) |
addToPropertyMap(m_targetY); |
} |
+DEFINE_NODE_FACTORY(SVGFEConvolveMatrixElement) |
+ |
bool SVGFEConvolveMatrixElement::isSupportedAttribute(const QualifiedName& attrName) |
{ |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |