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

Unified Diff: third_party/WebKit/Source/core/xml/XPathResult.h

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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
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)
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathPath.cpp ('k') | third_party/WebKit/Source/core/xml/XPathResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698