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

Unified Diff: third_party/WebKit/Source/core/page/EventSource.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/page/EventSource.h
diff --git a/third_party/WebKit/Source/core/page/EventSource.h b/third_party/WebKit/Source/core/page/EventSource.h
index 63cc345aa685fb0761665032cd684a3eedcf8e6f..24c15986540f8dbcd8aed3f586d6392b52a8c2e4 100644
--- a/third_party/WebKit/Source/core/page/EventSource.h
+++ b/third_party/WebKit/Source/core/page/EventSource.h
@@ -63,9 +63,9 @@ public:
bool withCredentials() const;
enum State : short {
- CONNECTING = 0,
- OPEN = 1,
- CLOSED = 2
+ kConnecting = 0,
+ kOpen = 1,
+ kClosed = 2
};
State readyState() const;

Powered by Google App Engine
This is Rietveld 408576698