Index: Source/core/html/RadioNodeList.h |
diff --git a/Source/core/html/RadioNodeList.h b/Source/core/html/RadioNodeList.h |
index 58ae81409487243c92c3382c866e3beee78a213f..f4bcfc24e2eae662e691fdc1c3382636aaae5f35 100644 |
--- a/Source/core/html/RadioNodeList.h |
+++ b/Source/core/html/RadioNodeList.h |
@@ -36,7 +36,7 @@ namespace WebCore { |
class RadioNodeList : public LiveNodeList { |
public: |
- static PassRefPtr<RadioNodeList> create(Node* rootNode, CollectionType type, const AtomicString& name) |
+ static PassRefPtr<RadioNodeList> create(const Handle<Node>& rootNode, CollectionType type, const AtomicString& name) |
{ |
ASSERT_UNUSED(type, type == RadioNodeListType); |
return adoptRef(new RadioNodeList(rootNode, name)); |
@@ -51,7 +51,7 @@ protected: |
virtual bool nodeMatches(const Handle<Element>&) const; |
private: |
- RadioNodeList(Node*, const AtomicString& name); |
+ RadioNodeList(const Handle<Node>&, const AtomicString& name); |
bool checkElementMatchesRadioNodeListFilter(const Handle<Element>&) const; |
AtomicString m_name; |