Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(599)

Unified Diff: third_party/WebKit/Source/core/xml/XPathFunctions.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/xml/XPathFunctions.cpp
diff --git a/third_party/WebKit/Source/core/xml/XPathFunctions.cpp b/third_party/WebKit/Source/core/xml/XPathFunctions.cpp
index 791dbc1d862e31496d9ec608357583a27435b0f6..bed72400fc2283e11ace01d9a7b2beb00d452bae 100644
--- a/third_party/WebKit/Source/core/xml/XPathFunctions.cpp
+++ b/third_party/WebKit/Source/core/xml/XPathFunctions.cpp
@@ -331,7 +331,7 @@ Value FunId::evaluate(EvaluationContext& context) const
TreeScope& contextScope = context.node->treeScope();
NodeSet* result(NodeSet::create());
- WillBeHeapHashSet<RawPtrWillBeMember<Node>> resultSet;
+ HeapHashSet<Member<Node>> resultSet;
unsigned startPos = 0;
unsigned length = idList.length();
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathExpressionNode.h ('k') | third_party/WebKit/Source/core/xml/XPathNodeSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698