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

Unified Diff: Source/core/dom/Node.h

Issue 280123002: Oilpan: move LiveNodeList collections to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pre-emptively GC a long runnning test Created 6 years, 7 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/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index 6a573ac7d155a70629f1fe56d94eded3f69381fe..9812c539ae6d175e5b39c26a9137e91fd85483dc 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -172,7 +172,7 @@ public:
ContainerNode* parentElementOrShadowRoot() const;
Node* previousSibling() const { return m_previous; }
Node* nextSibling() const { return m_next; }
- PassRefPtr<NodeList> childNodes();
+ PassRefPtrWillBeRawPtr<NodeList> childNodes();
Node* firstChild() const;
Node* lastChild() const;
@@ -666,7 +666,7 @@ public:
void updateAncestorConnectedSubframeCountForRemoval() const;
void updateAncestorConnectedSubframeCountForInsertion() const;
- PassRefPtr<NodeList> getDestinationInsertionPoints();
+ PassRefPtrWillBeRawPtr<NodeList> getDestinationInsertionPoints();
void setAlreadySpellChecked(bool flag) { setFlag(flag, AlreadySpellCheckedFlag); }
bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); }

Powered by Google App Engine
This is Rietveld 408576698