Index: Source/core/dom/ContainerNode.h |
diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h |
index f06c147be71126a0e855be16ee56075d0cc1d6d4..16534e59ebb78f6afd99ea0270113b71c49223dd 100644 |
--- a/Source/core/dom/ContainerNode.h |
+++ b/Source/core/dom/ContainerNode.h |
@@ -151,6 +151,8 @@ protected: |
void setFirstChild(Node* child) { m_firstChild = child; } |
void setLastChild(Node* child) { m_lastChild = child; } |
+ virtual void acceptHeapVisitor(Visitor*) const OVERRIDE; |
+ |
private: |
void removeBetween(Node* previousChild, Node* nextChild, Node* oldChild); |
void insertBeforeCommon(Node* nextChild, Node* oldChild); |