Index: Source/core/svg/SVGFEConvolveMatrixElement.cpp |
diff --git a/Source/core/svg/SVGFEConvolveMatrixElement.cpp b/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
index dc42d93b25d4f86ef54e2121950aec0203b1968d..7e5e10625371a61a1d1acdbe9d192dcf80686f88 100644 |
--- a/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
+++ b/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
@@ -62,18 +62,17 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFEConvolveMatrixElement) |
REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) |
END_REGISTER_ANIMATED_PROPERTIES |
-inline SVGFEConvolveMatrixElement::SVGFEConvolveMatrixElement(const QualifiedName& tagName, Document& document) |
- : SVGFilterPrimitiveStandardAttributes(tagName, document) |
+inline SVGFEConvolveMatrixElement::SVGFEConvolveMatrixElement(Document& document) |
+ : SVGFilterPrimitiveStandardAttributes(SVGNames::feConvolveMatrixTag, document) |
, m_edgeMode(EDGEMODE_DUPLICATE) |
{ |
- ASSERT(hasTagName(SVGNames::feConvolveMatrixTag)); |
ScriptWrappable::init(this); |
registerAnimatedPropertiesForSVGFEConvolveMatrixElement(); |
} |
-PassRefPtr<SVGFEConvolveMatrixElement> SVGFEConvolveMatrixElement::create(const QualifiedName& tagName, Document& document) |
+PassRefPtr<SVGFEConvolveMatrixElement> SVGFEConvolveMatrixElement::create(Document& document) |
{ |
- return adoptRef(new SVGFEConvolveMatrixElement(tagName, document)); |
+ return adoptRef(new SVGFEConvolveMatrixElement(document)); |
} |
const AtomicString& SVGFEConvolveMatrixElement::kernelUnitLengthXIdentifier() |