| Index: third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathPath.cpp b/third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| index 1894e0191a3f84a66e59b626836e0856253a4de0..52f3b44cfca91f8de4ce5dbaf79f2e0abb03e99e 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| @@ -132,7 +132,7 @@ void LocationPath::evaluate(EvaluationContext& context, NodeSet& nodes) const
|
| for (unsigned i = 0; i < m_steps.size(); i++) {
|
| Step* step = m_steps[i];
|
| NodeSet* newNodes = NodeSet::create();
|
| - WillBeHeapHashSet<RawPtrWillBeMember<Node>> newNodesSet;
|
| + HeapHashSet<Member<Node>> newNodesSet;
|
|
|
| bool needToCheckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->getAxis() != Step::ChildAxis && step->getAxis() != Step::SelfAxis
|
| && step->getAxis() != Step::DescendantAxis && step->getAxis() != Step::DescendantOrSelfAxis && step->getAxis() != Step::AttributeAxis);
|
|
|