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

Unified Diff: Source/core/html/LabelsNodeList.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/LabelsNodeList.h
diff --git a/Source/core/html/LabelsNodeList.h b/Source/core/html/LabelsNodeList.h
index fc7214558091efd0c6312113230870582904da6e..2dccb25e47e30c38f00ec4c71df4276d05678940 100644
--- a/Source/core/html/LabelsNodeList.h
+++ b/Source/core/html/LabelsNodeList.h
@@ -32,7 +32,7 @@ namespace WebCore {
class LabelsNodeList : public LiveNodeList {
public:
- static PassRefPtr<LabelsNodeList> create(Node* forNode, CollectionType type, const AtomicString&)
+ static PassRefPtr<LabelsNodeList> create(const Handle<Node>& forNode, CollectionType type, const AtomicString&)
{
ASSERT_UNUSED(type, type == LabelsNodeListType);
return adoptRef(new LabelsNodeList(forNode));
@@ -40,7 +40,7 @@ public:
~LabelsNodeList();
protected:
- LabelsNodeList(Node* forNode);
+ LabelsNodeList(const Handle<Node>& forNode);
virtual bool nodeMatches(const Handle<Element>&) const;
};

Powered by Google App Engine
This is Rietveld 408576698