| Index: third_party/WebKit/Source/core/dom/ContainerNode.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ContainerNode.h b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| index 4bdf9f285d06f4d042955ce0a0ac08b9d9d68b3f..faa36d2aa1ee05ecc43dadfcd63cba13b497df7f 100644
|
| --- a/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| +++ b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| @@ -242,7 +242,10 @@ private:
|
|
|
| NodeListsNodeData& ensureNodeLists();
|
| void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
|
| - void insertBeforeCommon(Node& nextChild, Node& oldChild);
|
| + void insertNodeVector(const NodeVector&, Node* next, bool (ContainerNode::*mutator)(Node& child, Node* next));
|
| + bool insertBeforeCommonWithAdoption(Node& newChild, Node* nextChild);
|
| + bool appendChildCommonWithAdoption(Node& newChild, Node* ignored);
|
| + void insertBeforeCommon(Node& nextChild, Node& newChild);
|
| void appendChildCommon(Node& child);
|
| void updateTreeAfterInsertion(Node& child);
|
| void willRemoveChildren();
|
|
|