| Index: Source/core/svg/SVGFEFuncBElement.cpp
|
| diff --git a/Source/core/svg/SVGFEFuncBElement.cpp b/Source/core/svg/SVGFEFuncBElement.cpp
|
| index b70ff65a0cb949095eebe791a4ea57ce5d1cb7a7..abca696dbf2bfa45d1cf51c68f5e4ca9d033e37d 100644
|
| --- a/Source/core/svg/SVGFEFuncBElement.cpp
|
| +++ b/Source/core/svg/SVGFEFuncBElement.cpp
|
| @@ -25,14 +25,14 @@
|
|
|
| namespace WebCore {
|
|
|
| -inline SVGFEFuncBElement::SVGFEFuncBElement(const QualifiedName& tagName, Document* document)
|
| +inline SVGFEFuncBElement::SVGFEFuncBElement(const QualifiedName& tagName, Document& document)
|
| : SVGComponentTransferFunctionElement(tagName, document)
|
| {
|
| ASSERT(hasTagName(SVGNames::feFuncBTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<SVGFEFuncBElement> SVGFEFuncBElement::create(const QualifiedName& tagName, Document* document)
|
| +PassRefPtr<SVGFEFuncBElement> SVGFEFuncBElement::create(const QualifiedName& tagName, Document& document)
|
| {
|
| return adoptRef(new SVGFEFuncBElement(tagName, document));
|
| }
|
|
|