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

Unified Diff: Source/core/xml/XPathExpressionNode.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/XPathExpression.cpp ('k') | Source/core/xml/XPathExpressionNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathExpressionNode.h
diff --git a/Source/core/xml/XPathExpressionNode.h b/Source/core/xml/XPathExpressionNode.h
index d41c8f099691622d792126d388910fec7b6a7e84..80215e9dcead5145f02f87e40b3aa841c229030a 100644
--- a/Source/core/xml/XPathExpressionNode.h
+++ b/Source/core/xml/XPathExpressionNode.h
@@ -53,7 +53,7 @@ public:
class ParseNode : public NoBaseWillBeGarbageCollectedFinalized<ParseNode> {
public:
virtual ~ParseNode() { }
- virtual void trace(Visitor*) { }
+ DEFINE_INLINE_VIRTUAL_TRACE() { }
};
class Expression : public ParseNode {
@@ -61,7 +61,7 @@ class Expression : public ParseNode {
public:
Expression();
virtual ~Expression();
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
virtual Value evaluate(EvaluationContext&) const = 0;
« no previous file with comments | « Source/core/xml/XPathExpression.cpp ('k') | Source/core/xml/XPathExpressionNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698