| Index: third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
|
| index 32e9774df1ca6136cd89b94a1406328b2b06a333..29af20894f516fa892ebe15b84c0998b0e96d902 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
|
| @@ -36,7 +36,7 @@ void DistributedNodes::swap(DistributedNodes& other)
|
| m_indices.swap(other.m_indices);
|
| }
|
|
|
| -void DistributedNodes::append(PassRefPtrWillBeRawPtr<Node> node)
|
| +void DistributedNodes::append(RawPtr<Node> node)
|
| {
|
| ASSERT(node);
|
| ASSERT(!node->isSlotOrActiveInsertionPoint());
|
| @@ -47,7 +47,7 @@ void DistributedNodes::append(PassRefPtrWillBeRawPtr<Node> node)
|
|
|
| size_t DistributedNodes::find(const Node* node) const
|
| {
|
| - WillBeHeapHashMap<RawPtrWillBeMember<const Node>, size_t>::const_iterator it = m_indices.find(node);
|
| + HeapHashMap<Member<const Node>, size_t>::const_iterator it = m_indices.find(node);
|
| if (it == m_indices.end())
|
| return kNotFound;
|
|
|
|
|