| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index e8124911044aa7d0ab540e315d376cb95429ceb1..6459bc36cb0c9d2ec2c0d1423af7530ba88e11f2 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -187,10 +187,10 @@ public:
|
|
|
| // These should all actually return a node, but this is only important for language bindings,
|
| // which will already know and hold a ref on the right node to return.
|
| - void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| - void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| + void insertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| + void replaceChild(PassRefPtrWillBeRawPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| void removeChild(Node* child, ExceptionState&);
|
| - void appendChild(PassRefPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| + void appendChild(PassRefPtrWillBeRawPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|
| bool hasChildren() const { return firstChild(); }
|
| virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = false) = 0;
|
|
|