Index: Source/WebCore/html/LabelsNodeList.h |
=================================================================== |
--- Source/WebCore/html/LabelsNodeList.h (revision 122245) |
+++ Source/WebCore/html/LabelsNodeList.h (working copy) |
@@ -32,7 +32,7 @@ |
class LabelsNodeList : public DynamicSubtreeNodeList { |
public: |
- static PassRefPtr<LabelsNodeList> create(Node* forNode) |
+ static PassRefPtr<LabelsNodeList> create(Node* forNode, const AtomicString&) |
{ |
return adoptRef(new LabelsNodeList(forNode)); |
} |
@@ -42,9 +42,6 @@ |
LabelsNodeList(Node* forNode); |
virtual bool nodeMatches(Element*) const; |
- |
-private: |
- RefPtr<Node> m_forNode; |
}; |
} // namespace WebCore |