| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index 4077461482c22a97614c9c0bb944da50ae6d3351..3d9e8482a5e929519eafbce15641086b705808e7 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); }
|
|
|