| Index: Source/core/html/HTMLTableRowsCollection.h
|
| diff --git a/Source/core/html/HTMLTableRowsCollection.h b/Source/core/html/HTMLTableRowsCollection.h
|
| index 03c1263c2fd902f95e40dfcd34bb43c8a4d8e450..e629dd55e448fcf0f524c1f5bb8a10c2c95f170d 100644
|
| --- a/Source/core/html/HTMLTableRowsCollection.h
|
| +++ b/Source/core/html/HTMLTableRowsCollection.h
|
| @@ -38,13 +38,13 @@ class HTMLTableRowElement;
|
|
|
| class HTMLTableRowsCollection : public HTMLCollection {
|
| public:
|
| - static PassRefPtr<HTMLTableRowsCollection> create(Node*, CollectionType);
|
| + static PassRefPtr<HTMLTableRowsCollection> create(const Handle<Node>&, CollectionType);
|
|
|
| static Result<HTMLTableRowElement> rowAfter(const Handle<HTMLTableElement>&, const Handle<HTMLTableRowElement>&);
|
| static Result<HTMLTableRowElement> lastRow(const Handle<HTMLTableElement>&);
|
|
|
| private:
|
| - HTMLTableRowsCollection(Node*);
|
| + HTMLTableRowsCollection(const Handle<Node>&);
|
|
|
| virtual Result<Element> virtualItemAfter(unsigned& offsetInArray, const Handle<Element>&) const OVERRIDE;
|
| };
|
|
|