Index: Source/core/svg/SVGFEPointLightElement.cpp |
diff --git a/Source/core/svg/SVGFEPointLightElement.cpp b/Source/core/svg/SVGFEPointLightElement.cpp |
index d98c1fcdbd6394a26a7e7bc788c2ef25c35294e1..0f971b1bf47ca0f5e13d4fe0a819dce01d816bd6 100644 |
--- a/Source/core/svg/SVGFEPointLightElement.cpp |
+++ b/Source/core/svg/SVGFEPointLightElement.cpp |
@@ -26,14 +26,14 @@ |
namespace WebCore { |
-inline SVGFEPointLightElement::SVGFEPointLightElement(const QualifiedName& tagName, Document* document) |
+inline SVGFEPointLightElement::SVGFEPointLightElement(const QualifiedName& tagName, Document& document) |
: SVGFELightElement(tagName, document) |
{ |
ASSERT(hasTagName(SVGNames::fePointLightTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGFEPointLightElement> SVGFEPointLightElement::create(const QualifiedName& tagName, Document* document) |
+PassRefPtr<SVGFEPointLightElement> SVGFEPointLightElement::create(const QualifiedName& tagName, Document& document) |
{ |
return adoptRef(new SVGFEPointLightElement(tagName, document)); |
} |