| Index: third_party/WebKit/Source/core/xml/XPathResult.h
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathResult.h b/third_party/WebKit/Source/core/xml/XPathResult.h
|
| index 808ff08c0f1aa917830b4c66b0cc51d88f0b9e37..44c1816f0f298e656c83b3ac3f454af057edf32e 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathResult.h
|
| +++ b/third_party/WebKit/Source/core/xml/XPathResult.h
|
| @@ -46,16 +46,16 @@ class XPathResult final : public GarbageCollected<XPathResult>, public ScriptWra
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum XPathResultType {
|
| - ANY_TYPE = 0,
|
| - NUMBER_TYPE = 1,
|
| - STRING_TYPE = 2,
|
| - BOOLEAN_TYPE = 3,
|
| - UNORDERED_NODE_ITERATOR_TYPE = 4,
|
| - ORDERED_NODE_ITERATOR_TYPE = 5,
|
| - UNORDERED_NODE_SNAPSHOT_TYPE = 6,
|
| - ORDERED_NODE_SNAPSHOT_TYPE = 7,
|
| - ANY_UNORDERED_NODE_TYPE = 8,
|
| - FIRST_ORDERED_NODE_TYPE = 9
|
| + kAnyType = 0,
|
| + kNumberType = 1,
|
| + kStringType = 2,
|
| + kBooleanType = 3,
|
| + kUnorderedNodeIteratorType = 4,
|
| + kOrderedNodeIteratorType = 5,
|
| + kUnorderedNodeSnapshotType = 6,
|
| + kOrderedNodeSnapshotType = 7,
|
| + kAnyUnorderedNodeType = 8,
|
| + kFirstOrderedNodeType = 9
|
| };
|
|
|
| static XPathResult* create(XPath::EvaluationContext& context, const XPath::Value& value)
|
|
|