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

Unified Diff: Source/core/xml/NativeXPathNSResolver.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: nullptr 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
« no previous file with comments | « Source/core/xml/DOMParser.cpp ('k') | Source/core/xml/NativeXPathNSResolver.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/NativeXPathNSResolver.h
diff --git a/Source/core/xml/NativeXPathNSResolver.h b/Source/core/xml/NativeXPathNSResolver.h
index 64fb162b8266989c5100f32c7388e21937be5924..a09f766a5b7271bfd1e8f51728b1f4e088bb57a3 100644
--- a/Source/core/xml/NativeXPathNSResolver.h
+++ b/Source/core/xml/NativeXPathNSResolver.h
@@ -35,7 +35,7 @@ class Node;
class NativeXPathNSResolver FINAL : public XPathNSResolver {
public:
- static PassRefPtrWillBeRawPtr<NativeXPathNSResolver> create(PassRefPtr<Node> node)
+ static PassRefPtrWillBeRawPtr<NativeXPathNSResolver> create(PassRefPtrWillBeRawPtr<Node> node)
{
return adoptRefWillBeNoop(new NativeXPathNSResolver(node));
}
@@ -46,8 +46,9 @@ public:
virtual void trace(Visitor*) OVERRIDE;
private:
- explicit NativeXPathNSResolver(PassRefPtr<Node>);
- RefPtr<Node> m_node;
+ explicit NativeXPathNSResolver(PassRefPtrWillBeRawPtr<Node>);
+
+ RefPtrWillBeMember<Node> m_node;
};
} // namespace WebCore
« no previous file with comments | « Source/core/xml/DOMParser.cpp ('k') | Source/core/xml/NativeXPathNSResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698