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

Unified Diff: Source/core/xml/XPathPath.cpp

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/XPathPath.h ('k') | Source/core/xml/XPathPredicate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathPath.cpp
diff --git a/Source/core/xml/XPathPath.cpp b/Source/core/xml/XPathPath.cpp
index 74dc33cb7b92b653468ba3ccffc04d29c976a4c9..e992e853494c98acf7fc4578230632f9d37b7a10 100644
--- a/Source/core/xml/XPathPath.cpp
+++ b/Source/core/xml/XPathPath.cpp
@@ -50,7 +50,7 @@ Filter::~Filter()
{
}
-void Filter::trace(Visitor* visitor)
+DEFINE_TRACE(Filter)
{
visitor->trace(m_expr);
visitor->trace(m_predicates);
@@ -97,7 +97,7 @@ LocationPath::~LocationPath()
#endif
}
-void LocationPath::trace(Visitor* visitor)
+DEFINE_TRACE(LocationPath)
{
#if ENABLE(OILPAN)
visitor->trace(m_steps);
@@ -217,7 +217,7 @@ Path::~Path()
{
}
-void Path::trace(Visitor* visitor)
+DEFINE_TRACE(Path)
{
visitor->trace(m_filter);
visitor->trace(m_path);
« no previous file with comments | « Source/core/xml/XPathPath.h ('k') | Source/core/xml/XPathPredicate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698