diff options
Diffstat (limited to 'WebCore/dom/StaticHashSetNodeList.cpp')
-rw-r--r-- | WebCore/dom/StaticHashSetNodeList.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/WebCore/dom/StaticHashSetNodeList.cpp b/WebCore/dom/StaticHashSetNodeList.cpp index d641cb5..6c8c2db 100644 --- a/WebCore/dom/StaticHashSetNodeList.cpp +++ b/WebCore/dom/StaticHashSetNodeList.cpp @@ -34,6 +34,19 @@ namespace WebCore { +StaticHashSetNodeList::StaticHashSetNodeList(ListHashSet<RefPtr<Node> >& nodes) +{ + m_nodes.swap(nodes); +} + +StaticHashSetNodeList::StaticHashSetNodeList() +{ +} + +StaticHashSetNodeList::~StaticHashSetNodeList() +{ +} + unsigned StaticHashSetNodeList::length() const { return m_nodes.size(); |