Index: Source/core/dom/ContainerNode.h |
diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h |
index 7ed7733c8cdddd4f6648aabbaab30aae555e165a..53c6eef88d7e0e13315b4cf65566245d3e13e36e 100644 |
--- a/Source/core/dom/ContainerNode.h |
+++ b/Source/core/dom/ContainerNode.h |
@@ -107,9 +107,9 @@ public: |
// These methods are only used during parsing. |
// They don't send DOM mutation events or handle reparenting. |
// However, arbitrary code may be run by beforeload handlers. |
- void parserAppendChild(PassRefPtr<Node>, AttachBehavior = AttachLazily); |
+ void parserAppendChild(PassRefPtr<Node>); |
void parserRemoveChild(Node*); |
- void parserInsertBefore(PassRefPtr<Node> newChild, Node* refChild, AttachBehavior = AttachLazily); |
+ void parserInsertBefore(PassRefPtr<Node> newChild, Node* refChild); |
void removeChildren(); |
void takeAllChildrenFrom(ContainerNode*); |