| Index: Source/core/inspector/DOMPatchSupport.cpp
|
| diff --git a/Source/core/inspector/DOMPatchSupport.cpp b/Source/core/inspector/DOMPatchSupport.cpp
|
| index 699585cc3ab825d843396d4f1faf2ca39c24527f..d4a7251744941d80f49aa75a02a4197a9a0c4bb9 100644
|
| --- a/Source/core/inspector/DOMPatchSupport.cpp
|
| +++ b/Source/core/inspector/DOMPatchSupport.cpp
|
| @@ -390,7 +390,7 @@ bool DOMPatchSupport::innerPatchChildren(ContainerNode* parentNode, const Vector
|
| for (size_t i = 0; i < oldMap.size(); ++i) {
|
| if (!oldMap[i].first)
|
| continue;
|
| - RefPtr<Node> node = oldMap[i].first->m_node;
|
| + RefPtrWillBeRawPtr<Node> node = oldMap[i].first->m_node;
|
| Node* anchorNode = parentNode->traverseToChildAt(oldMap[i].second);
|
| if (node == anchorNode)
|
| continue;
|
| @@ -461,7 +461,7 @@ bool DOMPatchSupport::insertBeforeAndMarkAsUsed(ContainerNode* parentNode, Diges
|
|
|
| bool DOMPatchSupport::removeChildAndMoveToNew(Digest* oldDigest, ExceptionState& exceptionState)
|
| {
|
| - RefPtr<Node> oldNode = oldDigest->m_node;
|
| + RefPtrWillBeRawPtr<Node> oldNode = oldDigest->m_node;
|
| if (!m_domEditor->removeChild(oldNode->parentNode(), oldNode.get(), exceptionState))
|
| return false;
|
|
|
|
|