Index: Source/core/html/LabelsNodeList.h |
diff --git a/Source/core/html/LabelsNodeList.h b/Source/core/html/LabelsNodeList.h |
index fc7214558091efd0c6312113230870582904da6e..2dccb25e47e30c38f00ec4c71df4276d05678940 100644 |
--- a/Source/core/html/LabelsNodeList.h |
+++ b/Source/core/html/LabelsNodeList.h |
@@ -32,7 +32,7 @@ namespace WebCore { |
class LabelsNodeList : public LiveNodeList { |
public: |
- static PassRefPtr<LabelsNodeList> create(Node* forNode, CollectionType type, const AtomicString&) |
+ static PassRefPtr<LabelsNodeList> create(const Handle<Node>& forNode, CollectionType type, const AtomicString&) |
{ |
ASSERT_UNUSED(type, type == LabelsNodeListType); |
return adoptRef(new LabelsNodeList(forNode)); |
@@ -40,7 +40,7 @@ public: |
~LabelsNodeList(); |
protected: |
- LabelsNodeList(Node* forNode); |
+ LabelsNodeList(const Handle<Node>& forNode); |
virtual bool nodeMatches(const Handle<Element>&) const; |
}; |