Index: Source/core/svg/SVGFEDistantLightElement.cpp |
diff --git a/Source/core/svg/SVGFEDistantLightElement.cpp b/Source/core/svg/SVGFEDistantLightElement.cpp |
index d453563640436b921185859173cb2de34e27a286..68b3940f59995d3abbcb3dccd706743432db2521 100644 |
--- a/Source/core/svg/SVGFEDistantLightElement.cpp |
+++ b/Source/core/svg/SVGFEDistantLightElement.cpp |
@@ -26,16 +26,15 @@ |
namespace WebCore { |
-inline SVGFEDistantLightElement::SVGFEDistantLightElement(const QualifiedName& tagName, Document& document) |
- : SVGFELightElement(tagName, document) |
+inline SVGFEDistantLightElement::SVGFEDistantLightElement(Document& document) |
+ : SVGFELightElement(SVGNames::feDistantLightTag, document) |
{ |
- ASSERT(hasTagName(SVGNames::feDistantLightTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGFEDistantLightElement> SVGFEDistantLightElement::create(const QualifiedName& tagName, Document& document) |
+PassRefPtr<SVGFEDistantLightElement> SVGFEDistantLightElement::create(Document& document) |
{ |
- return adoptRef(new SVGFEDistantLightElement(tagName, document)); |
+ return adoptRef(new SVGFEDistantLightElement(document)); |
} |
PassRefPtr<LightSource> SVGFEDistantLightElement::lightSource() const |