Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1023)

Unified Diff: Source/core/html/HTMLTableRowsCollection.h

Issue 23983034: [oilpan] Handlify Node raw pointers in html/ and subclasses of dom/LiveNodeList. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698