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

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

Issue 937653002: InlinedVisitor: Migrate xml to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/XPathNSResolver.h ('k') | Source/core/xml/XPathPath.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathNodeSet.h
diff --git a/Source/core/xml/XPathNodeSet.h b/Source/core/xml/XPathNodeSet.h
index 28b6ef63d94e8b1a464a8f68f910ae95b10c087b..8ecfa92c8c6aea78c54fa954238d30e00e258222 100644
--- a/Source/core/xml/XPathNodeSet.h
+++ b/Source/core/xml/XPathNodeSet.h
@@ -39,7 +39,7 @@ class NodeSet : public NoBaseWillBeGarbageCollected<NodeSet> {
public:
static PassOwnPtrWillBeRawPtr<NodeSet> create() { return adoptPtrWillBeNoop(new NodeSet); }
static PassOwnPtrWillBeRawPtr<NodeSet> create(const NodeSet&);
- void trace(Visitor* visitor) { visitor->trace(m_nodes); }
+ DEFINE_INLINE_TRACE() { visitor->trace(m_nodes); }
size_t size() const { return m_nodes.size(); }
bool isEmpty() const { return !m_nodes.size(); }
« no previous file with comments | « Source/core/xml/XPathNSResolver.h ('k') | Source/core/xml/XPathPath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698