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

Unified Diff: third_party/WebKit/Source/modules/websockets/DOMWebSocket.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/modules/websockets/DOMWebSocket.h
diff --git a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
index fab9dc021a743a804777258672513738464d1f1a..d030d5d438eafcb82844d77fd1ed919afaed9b3b 100644
--- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
+++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
@@ -73,10 +73,10 @@ public:
~DOMWebSocket() override;
enum State {
- CONNECTING = 0,
- OPEN = 1,
- CLOSING = 2,
- CLOSED = 3
+ kConnecting = 0,
+ kOpen = 1,
+ kClosing = 2,
+ kClosed = 3
};
void connect(const String& url, const Vector<String>& protocols, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698