| 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; | 
|  | 
|  |