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

Unified Diff: Source/core/html/HTMLNameCollection.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/HTMLNameCollection.h
diff --git a/Source/core/html/HTMLNameCollection.h b/Source/core/html/HTMLNameCollection.h
index 25d22e178d3918d2736b719f6c7a8d0ecf1e86a2..d3ce4f672879f018d5f655524de1c608a9c2bb00 100644
--- a/Source/core/html/HTMLNameCollection.h
+++ b/Source/core/html/HTMLNameCollection.h
@@ -33,7 +33,7 @@ class Document;
class HTMLNameCollection : public HTMLCollection {
public:
- static PassRefPtr<HTMLNameCollection> create(Node* document, CollectionType type, const AtomicString& name)
+ static PassRefPtr<HTMLNameCollection> create(const Handle<Node>& document, CollectionType type, const AtomicString& name)
{
return adoptRef(new HTMLNameCollection(document, type, name));
}
@@ -41,7 +41,7 @@ public:
~HTMLNameCollection();
private:
- HTMLNameCollection(Node*, CollectionType, const AtomicString& name);
+ HTMLNameCollection(const Handle<Node>&, CollectionType, const AtomicString& name);
virtual Result<Element> virtualItemAfter(unsigned& offsetInArray, const Handle<Element>&) const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698