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

Unified Diff: Source/core/xml/XPathExpressionNode.h

Issue 288343017: Oilpan: Replace RefPtrs to Node and its subclasses in core/xml/ with Oilpan transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: Source/core/xml/XPathExpressionNode.h
diff --git a/Source/core/xml/XPathExpressionNode.h b/Source/core/xml/XPathExpressionNode.h
index c7f876ce84ad01c96029c02bfd83723dd1b2478d..959c88411c696efbefd2eb4b2954a99693392fa6 100644
--- a/Source/core/xml/XPathExpressionNode.h
+++ b/Source/core/xml/XPathExpressionNode.h
@@ -40,7 +40,7 @@ namespace WebCore {
struct EvaluationContext {
WTF_MAKE_FAST_ALLOCATED;
public:
- RefPtr<Node> node;
+ RefPtrWillBePersistent<Node> node;
unsigned long size;
unsigned long position;
HashMap<String, String> variableBindings;

Powered by Google App Engine
This is Rietveld 408576698