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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.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/xmlhttprequest/XMLHttpRequest.h
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
index ea79344677cac947b7409b77e56cb3c5699e51b8..526d9283b58859408d2d35f38fb16cdb30c35196 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
@@ -76,11 +76,11 @@ public:
// These exact numeric values are important because JS expects them.
enum State {
- UNSENT = 0,
- OPENED = 1,
- HEADERS_RECEIVED = 2,
- LOADING = 3,
- DONE = 4
+ kUnsent = 0,
+ kOpened = 1,
+ kHeadersReceived = 2,
+ kLoading = 3,
+ kDone = 4
};
enum ResponseTypeCode {
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathUtil.cpp ('k') | third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698