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