Index: Source/core/html/HTMLFrameSetElement.cpp |
diff --git a/Source/core/html/HTMLFrameSetElement.cpp b/Source/core/html/HTMLFrameSetElement.cpp |
index 7b502b168b05ecdf7abb1af3636bb30a4ec5ecf6..513aa9023674e41885271a27e6361b352259d47b 100644 |
--- a/Source/core/html/HTMLFrameSetElement.cpp |
+++ b/Source/core/html/HTMLFrameSetElement.cpp |
@@ -43,7 +43,7 @@ namespace WebCore { |
using namespace HTMLNames; |
-HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document* document) |
+HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document& document) |
: HTMLElement(tagName, document) |
, m_border(6) |
, m_borderSet(false) |
@@ -57,7 +57,7 @@ HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document* |
setHasCustomStyleCallbacks(); |
} |
-PassRefPtr<HTMLFrameSetElement> HTMLFrameSetElement::create(const QualifiedName& tagName, Document* document) |
+PassRefPtr<HTMLFrameSetElement> HTMLFrameSetElement::create(const QualifiedName& tagName, Document& document) |
{ |
return adoptRef(new HTMLFrameSetElement(tagName, document)); |
} |