Index: Source/core/svg/SVGFEFloodElement.cpp |
diff --git a/Source/core/svg/SVGFEFloodElement.cpp b/Source/core/svg/SVGFEFloodElement.cpp |
index f8cac520706bbfb2e7feded9e5fb24c6baa48937..33d3aa370509c9e4d7cbba5e1ce3947a1a8c3eef 100644 |
--- a/Source/core/svg/SVGFEFloodElement.cpp |
+++ b/Source/core/svg/SVGFEFloodElement.cpp |
@@ -28,14 +28,14 @@ |
namespace WebCore { |
-inline SVGFEFloodElement::SVGFEFloodElement(const QualifiedName& tagName, Document* document) |
+inline SVGFEFloodElement::SVGFEFloodElement(const QualifiedName& tagName, Document& document) |
: SVGFilterPrimitiveStandardAttributes(tagName, document) |
{ |
ASSERT(hasTagName(SVGNames::feFloodTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGFEFloodElement> SVGFEFloodElement::create(const QualifiedName& tagName, Document* document) |
+PassRefPtr<SVGFEFloodElement> SVGFEFloodElement::create(const QualifiedName& tagName, Document& document) |
{ |
return adoptRef(new SVGFEFloodElement(tagName, document)); |
} |