| Index: third_party/WebKit/Source/core/xml/XPathStep.h
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathStep.h b/third_party/WebKit/Source/core/xml/XPathStep.h
|
| index 8bd423ca8521a898ca6441150fd53acc07c5db3f..cb17248cdc393869767c21890535178f425612ec 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathStep.h
|
| +++ b/third_party/WebKit/Source/core/xml/XPathStep.h
|
| @@ -76,7 +76,7 @@ public:
|
| }
|
| DEFINE_INLINE_TRACE() { visitor->trace(m_mergedPredicates); }
|
|
|
| - Kind kind() const { return m_kind; }
|
| + Kind getKind() const { return m_kind; }
|
| const AtomicString& data() const { return m_data; }
|
| const AtomicString& namespaceURI() const { return m_namespaceURI; }
|
| HeapVector<Member<Predicate>>& mergedPredicates() { return m_mergedPredicates; }
|
| @@ -100,7 +100,7 @@ public:
|
|
|
| void evaluate(EvaluationContext&, Node* context, NodeSet&) const;
|
|
|
| - Axis axis() const { return m_axis; }
|
| + Axis getAxis() const { return m_axis; }
|
| const NodeTest& nodeTest() const { return *m_nodeTest; }
|
|
|
| private:
|
|
|