Index: Source/core/svg/SVGFEDistantLightElement.cpp |
diff --git a/Source/core/svg/SVGFEDistantLightElement.cpp b/Source/core/svg/SVGFEDistantLightElement.cpp |
index 716ff95cb7f6410e3fe3bcedd1715d4050b373ad..059b77ceb1df91758996ff43da7494351ea87b2c 100644 |
--- a/Source/core/svg/SVGFEDistantLightElement.cpp |
+++ b/Source/core/svg/SVGFEDistantLightElement.cpp |
@@ -25,12 +25,14 @@ |
namespace WebCore { |
-SVGFEDistantLightElement::SVGFEDistantLightElement(Document& document) |
+inline SVGFEDistantLightElement::SVGFEDistantLightElement(Document& document) |
: SVGFELightElement(SVGNames::feDistantLightTag, document) |
{ |
ScriptWrappable::init(this); |
} |
+DEFINE_NODE_FACTORY(SVGFEDistantLightElement) |
+ |
PassRefPtr<LightSource> SVGFEDistantLightElement::lightSource() const |
{ |
return DistantLightSource::create(azimuth()->currentValue()->value(), elevation()->currentValue()->value()); |