| Index: Source/core/dom/ContainerNode.h
|
| diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h
|
| index ef3862bf1744fa5e8560fdc43b53a627010669b6..86f37de9c13f6aee7f79c56958a88dc583a40fa4 100644
|
| --- a/Source/core/dom/ContainerNode.h
|
| +++ b/Source/core/dom/ContainerNode.h
|
| @@ -96,10 +96,10 @@ public:
|
| unsigned childNodeCount() const;
|
| Node* childNode(unsigned index) const;
|
|
|
| - void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION_STATE, AttachBehavior = AttachNow);
|
| - void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION_STATE, AttachBehavior = AttachNow);
|
| - void removeChild(Node* child, ExceptionState& = ASSERT_NO_EXCEPTION_STATE);
|
| - void appendChild(PassRefPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION_STATE, AttachBehavior = AttachNow);
|
| + void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
|
| + void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
|
| + void removeChild(Node* child, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| + void appendChild(PassRefPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
|
|
|
| // These methods are only used during parsing.
|
| // They don't send DOM mutation events or handle reparenting.
|
|
|