Index: Source/core/dom/ContainerNode.h |
diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h |
index 1ba2f8a5363f822117714952f4e9221bb6005c81..b0b1ee51fe1ae0371a8063057adac85e697aaeee 100644 |
--- a/Source/core/dom/ContainerNode.h |
+++ b/Source/core/dom/ContainerNode.h |
@@ -87,11 +87,7 @@ public: |
bool hasOneChild() const { return m_firstChild && !m_firstChild->nextSibling(); } |
bool hasOneTextChild() const { return hasOneChild() && m_firstChild->isTextNode(); } |
- // ParentNode interface API |
PassRefPtr<HTMLCollection> children(); |
- Element* firstElementChild() const; |
- Element* lastElementChild() const; |
- unsigned childElementCount() const; |
unsigned childNodeCount() const; |
Node* childNode(unsigned index) const; |