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

Unified Diff: Source/core/html/HTMLOptionsCollection.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/HTMLOptionsCollection.h
diff --git a/Source/core/html/HTMLOptionsCollection.h b/Source/core/html/HTMLOptionsCollection.h
index 42bcfed524981120003986f41b2e6a185764f2cf..96bbc7532a4b7dc94623c82b0807d7b8846a98a3 100644
--- a/Source/core/html/HTMLOptionsCollection.h
+++ b/Source/core/html/HTMLOptionsCollection.h
@@ -35,7 +35,7 @@ typedef int ExceptionCode;
class HTMLOptionsCollection : public HTMLCollection {
public:
- static PassRefPtr<HTMLOptionsCollection> create(Node*, CollectionType);
+ static PassRefPtr<HTMLOptionsCollection> create(const Handle<Node>&, CollectionType);
void add(const Handle<HTMLOptionElement>&, ExceptionCode&);
void add(const Handle<HTMLOptionElement>&, int index, ExceptionCode&);
@@ -47,7 +47,7 @@ public:
void setLength(unsigned, ExceptionCode&);
private:
- HTMLOptionsCollection(Node*);
+ HTMLOptionsCollection(const Handle<Node>&);
};
} //namespace

Powered by Google App Engine
This is Rietveld 408576698