Index: Source/core/svg/SVGAnimateTransformElement.cpp |
diff --git a/Source/core/svg/SVGAnimateTransformElement.cpp b/Source/core/svg/SVGAnimateTransformElement.cpp |
index 3f36f43295ac8d8db6d97fb69c240e16fdc12db3..e6a1bd47c240dba9dad348fe655b36aed2b99a21 100644 |
--- a/Source/core/svg/SVGAnimateTransformElement.cpp |
+++ b/Source/core/svg/SVGAnimateTransformElement.cpp |
@@ -29,7 +29,7 @@ |
namespace WebCore { |
-inline SVGAnimateTransformElement::SVGAnimateTransformElement(const QualifiedName& tagName, Document* document) |
+inline SVGAnimateTransformElement::SVGAnimateTransformElement(const QualifiedName& tagName, Document& document) |
: SVGAnimateElement(tagName, document) |
, m_type(SVGTransform::SVG_TRANSFORM_UNKNOWN) |
{ |
@@ -37,7 +37,7 @@ inline SVGAnimateTransformElement::SVGAnimateTransformElement(const QualifiedNam |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGAnimateTransformElement> SVGAnimateTransformElement::create(const QualifiedName& tagName, Document* document) |
+PassRefPtr<SVGAnimateTransformElement> SVGAnimateTransformElement::create(const QualifiedName& tagName, Document& document) |
{ |
return adoptRef(new SVGAnimateTransformElement(tagName, document)); |
} |