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); } |