Index: Source/core/svg/SVGFEFloodElement.cpp |
diff --git a/Source/core/svg/SVGFEFloodElement.cpp b/Source/core/svg/SVGFEFloodElement.cpp |
index 33d3aa370509c9e4d7cbba5e1ce3947a1a8c3eef..baee77b7311640eb149c4720cec81ee28ce78c74 100644 |
--- a/Source/core/svg/SVGFEFloodElement.cpp |
+++ b/Source/core/svg/SVGFEFloodElement.cpp |
@@ -28,16 +28,15 @@ |
namespace WebCore { |
-inline SVGFEFloodElement::SVGFEFloodElement(const QualifiedName& tagName, Document& document) |
- : SVGFilterPrimitiveStandardAttributes(tagName, document) |
+inline SVGFEFloodElement::SVGFEFloodElement(Document& document) |
+ : SVGFilterPrimitiveStandardAttributes(SVGNames::feFloodTag, document) |
{ |
- ASSERT(hasTagName(SVGNames::feFloodTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGFEFloodElement> SVGFEFloodElement::create(const QualifiedName& tagName, Document& document) |
+PassRefPtr<SVGFEFloodElement> SVGFEFloodElement::create(Document& document) |
{ |
- return adoptRef(new SVGFEFloodElement(tagName, document)); |
+ return adoptRef(new SVGFEFloodElement(document)); |
} |