| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index ce854fe52d54126c137a6e602850a024f2950981..670a3f48e6dee0c4c835d56f92168195c40c4372 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -323,8 +323,8 @@ public:
|
| PassRefPtrWillBeRawPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&);
|
| PassRefPtrWillBeRawPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&);
|
| PassRefPtrWillBeRawPtr<Attr> createAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false);
|
| - PassRefPtr<Node> importNode(Node* importedNode, ExceptionState&);
|
| - PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&);
|
| + PassRefPtrWillBeRawPtr<Node> importNode(Node* importedNode, ExceptionState&);
|
| + PassRefPtrWillBeRawPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&);
|
| PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&);
|
| PassRefPtrWillBeRawPtr<Element> createElement(const QualifiedName&, bool createdByParser);
|
|
|
|
|