| 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;
|
|
|