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

Unified Diff: Source/core/html/HTMLFormControlsCollection.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/HTMLFormControlsCollection.h
diff --git a/Source/core/html/HTMLFormControlsCollection.h b/Source/core/html/HTMLFormControlsCollection.h
index 7d70f5964b7136d54d7b60195634913eaf826bcb..3530bde5928228f7253b244dd29daa3ec8635929 100644
--- a/Source/core/html/HTMLFormControlsCollection.h
+++ b/Source/core/html/HTMLFormControlsCollection.h
@@ -37,14 +37,14 @@ class QualifiedName;
class HTMLFormControlsCollection : public HTMLCollection {
public:
- static PassRefPtr<HTMLFormControlsCollection> create(Node*, CollectionType);
+ static PassRefPtr<HTMLFormControlsCollection> create(const Handle<Node>&, CollectionType);
virtual ~HTMLFormControlsCollection();
virtual Result<Node> namedItem(const AtomicString& name) const;
private:
- HTMLFormControlsCollection(Node*);
+ HTMLFormControlsCollection(const Handle<Node>&);
virtual void updateNameCache() const;

Powered by Google App Engine
This is Rietveld 408576698