Index: Source/core/html/HTMLOptionsCollection.cpp |
diff --git a/Source/core/html/HTMLOptionsCollection.cpp b/Source/core/html/HTMLOptionsCollection.cpp |
index c8a035544680ced6e645a4a89f60980ce8bd43d3..6b61a62b1663e7ee51cca00cd9f49b7d72ceaf9e 100644 |
--- a/Source/core/html/HTMLOptionsCollection.cpp |
+++ b/Source/core/html/HTMLOptionsCollection.cpp |
@@ -27,14 +27,14 @@ |
namespace WebCore { |
-HTMLOptionsCollection::HTMLOptionsCollection(Node* select) |
+HTMLOptionsCollection::HTMLOptionsCollection(const Handle<Node>& select) |
: HTMLCollection(select, SelectOptions, DoesNotOverrideItemAfter) |
{ |
ASSERT(select->hasTagName(HTMLNames::selectTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(Node* select, CollectionType) |
+PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(const Handle<Node>& select, CollectionType) |
{ |
return adoptRef(new HTMLOptionsCollection(select)); |
} |