Index: Source/core/html/HTMLTableRowsCollection.cpp |
diff --git a/Source/core/html/HTMLTableRowsCollection.cpp b/Source/core/html/HTMLTableRowsCollection.cpp |
index b12d821c800570a45d02b16515d366e77ec9c709..fe0316c535649e2d84fd1bab6d38351d4374b872 100644 |
--- a/Source/core/html/HTMLTableRowsCollection.cpp |
+++ b/Source/core/html/HTMLTableRowsCollection.cpp |
@@ -143,9 +143,9 @@ HTMLTableRowsCollection::HTMLTableRowsCollection(ContainerNode& table) |
ASSERT(isHTMLTableElement(table)); |
} |
-PassRefPtr<HTMLTableRowsCollection> HTMLTableRowsCollection::create(ContainerNode& table, CollectionType) |
+PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> HTMLTableRowsCollection::create(ContainerNode& table, CollectionType) |
{ |
- return adoptRef(new HTMLTableRowsCollection(table)); |
+ return adoptRefWillBeNoop(new HTMLTableRowsCollection(table)); |
} |
Element* HTMLTableRowsCollection::virtualItemAfter(Element* previous) const |