| Index: Source/core/svg/SVGFEPointLightElement.cpp
|
| diff --git a/Source/core/svg/SVGFEPointLightElement.cpp b/Source/core/svg/SVGFEPointLightElement.cpp
|
| index 7828f3895cbcfa4aa8a4875472a5391eebd6a5de..29b0ce9757bdc102be9e3eecf4f578670dfa70f3 100644
|
| --- a/Source/core/svg/SVGFEPointLightElement.cpp
|
| +++ b/Source/core/svg/SVGFEPointLightElement.cpp
|
| @@ -25,12 +25,14 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFEPointLightElement::SVGFEPointLightElement(Document& document)
|
| +inline SVGFEPointLightElement::SVGFEPointLightElement(Document& document)
|
| : SVGFELightElement(SVGNames::fePointLightTag, document)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEPointLightElement)
|
| +
|
| PassRefPtr<LightSource> SVGFEPointLightElement::lightSource() const
|
| {
|
| return PointLightSource::create(FloatPoint3D(x()->currentValue()->value(), y()->currentValue()->value(), z()->currentValue()->value()));
|
|
|