Index: Source/core/html/HTMLTableRowsCollection.cpp |
diff --git a/Source/core/html/HTMLTableRowsCollection.cpp b/Source/core/html/HTMLTableRowsCollection.cpp |
index a65c0afff2e53496221ce4c1d3074e300ab3fd98..db5db9ea87bd5278c80fc4de36f2157aca555d36 100644 |
--- a/Source/core/html/HTMLTableRowsCollection.cpp |
+++ b/Source/core/html/HTMLTableRowsCollection.cpp |
@@ -157,13 +157,13 @@ Result<HTMLTableRowElement> HTMLTableRowsCollection::lastRow(const Handle<HTMLTa |
// Must call get() on the table in case that argument is compiled before dereferencing the |
// table to get at the collection cache. Order of argument evaluation is undefined and can |
// differ between compilers. |
-HTMLTableRowsCollection::HTMLTableRowsCollection(Node* table) |
+HTMLTableRowsCollection::HTMLTableRowsCollection(const Handle<Node>& table) |
: HTMLCollection(table, TableRows, OverridesItemAfter) |
{ |
ASSERT(table->hasTagName(tableTag)); |
} |
-PassRefPtr<HTMLTableRowsCollection> HTMLTableRowsCollection::create(Node* table, CollectionType) |
+PassRefPtr<HTMLTableRowsCollection> HTMLTableRowsCollection::create(const Handle<Node>& table, CollectionType) |
{ |
return adoptRef(new HTMLTableRowsCollection(table)); |
} |