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

Unified Diff: Source/core/xml/XPathPath.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/XPathNodeSet.h ('k') | Source/core/xml/XPathPath.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathPath.h
diff --git a/Source/core/xml/XPathPath.h b/Source/core/xml/XPathPath.h
index d8a3af042d03b249942390996777f54d4ac3dd0e..1cf1f2d297f743cdb6805022c985f7841dfd6d0a 100644
--- a/Source/core/xml/XPathPath.h
+++ b/Source/core/xml/XPathPath.h
@@ -41,7 +41,7 @@ class Filter final : public Expression {
public:
Filter(PassOwnPtrWillBeRawPtr<Expression>, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >&);
virtual ~Filter();
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
virtual Value evaluate(EvaluationContext&) const override;
@@ -56,7 +56,7 @@ class LocationPath final : public Expression {
public:
LocationPath();
virtual ~LocationPath();
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
virtual Value evaluate(EvaluationContext&) const override;
void setAbsolute(bool value) { m_absolute = value; setIsContextNodeSensitive(!m_absolute); }
@@ -75,7 +75,7 @@ class Path final : public Expression {
public:
Path(Expression*, LocationPath*);
virtual ~Path();
- virtual void trace(Visitor*) override;
+ DECLARE_VIRTUAL_TRACE();
virtual Value evaluate(EvaluationContext&) const override;
« no previous file with comments | « Source/core/xml/XPathNodeSet.h ('k') | Source/core/xml/XPathPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698