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

Unified Diff: Source/core/dom/ChildNodeList.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/dom/ChildNodeList.h
diff --git a/Source/core/dom/ChildNodeList.h b/Source/core/dom/ChildNodeList.h
index 72fef04c312cac3f0b1a7dc6ca4a0b52971f9920..f5523676d2172a84037c394f8a0cfe303f9cd99f 100644
--- a/Source/core/dom/ChildNodeList.h
+++ b/Source/core/dom/ChildNodeList.h
@@ -31,7 +31,7 @@ namespace WebCore {
class ChildNodeList : public LiveNodeList {
public:
- static PassRefPtr<ChildNodeList> create(PassRefPtr<Node> rootNode)
+ static PassRefPtr<ChildNodeList> create(const Handle<Node>& rootNode)
{
return adoptRef(new ChildNodeList(rootNode));
}
@@ -39,7 +39,7 @@ namespace WebCore {
virtual ~ChildNodeList();
protected:
- explicit ChildNodeList(PassRefPtr<Node> rootNode);
+ explicit ChildNodeList(const Handle<Node>& rootNode);
virtual bool nodeMatches(const Handle<Element>&) const;
};

Powered by Google App Engine
This is Rietveld 408576698