Index: Source/core/dom/ContainerNode.h |
diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h |
index 643e2d5e8a2028d2b9e08e534d7a9c3c6f546d16..29964cfc0a9e7fbcd54457022570bd798edefb4e 100644 |
--- a/Source/core/dom/ContainerNode.h |
+++ b/Source/core/dom/ContainerNode.h |
@@ -169,9 +169,6 @@ protected: |
ContainerNode(TreeScope*, ConstructionType = CreateContainer); |
template<class GenericNode, class GenericNodeContainer> |
- friend void appendChildToContainer(GenericNode& child, GenericNodeContainer&); |
- |
- template<class GenericNode, class GenericNodeContainer> |
friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer&); |
#if !ENABLE(OILPAN) |
@@ -184,6 +181,7 @@ protected: |
private: |
void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild); |
void insertBeforeCommon(Node& nextChild, Node& oldChild); |
+ void appendChildCommon(Node& child); |
void updateTreeAfterInsertion(Node& child); |
void willRemoveChildren(); |
void willRemoveChild(Node& child); |