| Index: mojo/services/network/web_socket_impl.h
|
| diff --git a/mojo/services/network/web_socket_impl.h b/mojo/services/network/web_socket_impl.h
|
| index bd8a27d3cbd13c539b3417b90622b7740e493b17..0c02f4bccab2f1fb93932e5ef22c70c3a079a213 100644
|
| --- a/mojo/services/network/web_socket_impl.h
|
| +++ b/mojo/services/network/web_socket_impl.h
|
| @@ -31,12 +31,12 @@ class WebSocketImpl : public InterfaceImpl<WebSocket> {
|
| Array<String> protocols,
|
| const String& origin,
|
| ScopedDataPipeConsumerHandle send_stream,
|
| - WebSocketClientPtr client) OVERRIDE;
|
| + WebSocketClientPtr client) override;
|
| virtual void Send(bool fin,
|
| WebSocket::MessageType type,
|
| - uint32_t num_bytes) OVERRIDE;
|
| - virtual void FlowControl(int64_t quota) OVERRIDE;
|
| - virtual void Close(uint16_t code, const String& reason) OVERRIDE;
|
| + uint32_t num_bytes) override;
|
| + virtual void FlowControl(int64_t quota) override;
|
| + virtual void Close(uint16_t code, const String& reason) override;
|
|
|
| // Called with the data to send once it has been read from |send_stream_|.
|
| void DidReadFromSendStream(bool fin,
|
|
|