| Index: ppapi/shared_impl/ppb_tcp_socket_shared.h
|
| diff --git a/ppapi/shared_impl/ppb_tcp_socket_shared.h b/ppapi/shared_impl/ppb_tcp_socket_shared.h
|
| index c723bdc6e18d6eeec453c61dacca9f3b9897bc6e..82286702bb33d8a086c18da097559bee627dacf9 100644
|
| --- a/ppapi/shared_impl/ppb_tcp_socket_shared.h
|
| +++ b/ppapi/shared_impl/ppb_tcp_socket_shared.h
|
| @@ -29,14 +29,7 @@ class PPAPI_SHARED_EXPORT TCPSocketState {
|
| // Transitions that will change the socket state. Please note that
|
| // read/write/accept are not included because they don't change the socket
|
| // state.
|
| - enum TransitionType {
|
| - NONE,
|
| - BIND,
|
| - CONNECT,
|
| - SSL_CONNECT,
|
| - LISTEN,
|
| - CLOSE
|
| - };
|
| + enum TransitionType { NONE, BIND, CONNECT, SSL_CONNECT, LISTEN, CLOSE };
|
|
|
| explicit TCPSocketState(StateType state);
|
| ~TCPSocketState();
|
|
|