Chromium Code Reviews| 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 e44530e4346b1b41efef00e58f8da76213981185..272434d7a69c24f2f3ae4f0381c1a2089c44d300 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; |