| 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 bafecad8d28f6c687da40aa381659d6af2eac5bc..5cdae9186c12b1dcbb85494fd5973956f1c0d072 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->axis() != Step::ChildAxis && step->axis() != Step::SelfAxis
|
| && step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axis() != Step::AttributeAxis);
|
|
|