| Index: Source/core/xml/XPathPath.h | 
| diff --git a/Source/core/xml/XPathPath.h b/Source/core/xml/XPathPath.h | 
| index 1cf1f2d297f743cdb6805022c985f7841dfd6d0a..76167934b27e5e3875d1e7ab041aaf50c2943c12 100644 | 
| --- a/Source/core/xml/XPathPath.h | 
| +++ b/Source/core/xml/XPathPath.h | 
| @@ -39,7 +39,7 @@ class Step; | 
|  | 
| class Filter final : public Expression { | 
| public: | 
| -    Filter(PassOwnPtrWillBeRawPtr<Expression>, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >&); | 
| +    Filter(PassOwnPtrWillBeRawPtr<Expression>, WillBeHeapVector<OwnPtrWillBeMember<Predicate>>&); | 
| virtual ~Filter(); | 
| DECLARE_VIRTUAL_TRACE(); | 
|  | 
| @@ -49,7 +49,7 @@ private: | 
| virtual Value::Type resultType() const override { return Value::NodeSetValue; } | 
|  | 
| OwnPtrWillBeMember<Expression> m_expr; | 
| -    WillBeHeapVector<OwnPtrWillBeMember<Predicate> > m_predicates; | 
| +    WillBeHeapVector<OwnPtrWillBeMember<Predicate>> m_predicates; | 
| }; | 
|  | 
| class LocationPath final : public Expression { | 
| @@ -67,7 +67,7 @@ public: | 
| private: | 
| virtual Value::Type resultType() const override { return Value::NodeSetValue; } | 
|  | 
| -    WillBeHeapVector<RawPtrWillBeMember<Step> > m_steps; | 
| +    WillBeHeapVector<RawPtrWillBeMember<Step>> m_steps; | 
| bool m_absolute; | 
| }; | 
|  | 
|  |