Chromium Code Reviews| Index: mojo/services/html_viewer/websockethandle_impl.h |
| diff --git a/mojo/services/html_viewer/websockethandle_impl.h b/mojo/services/html_viewer/websockethandle_impl.h |
| index eef6a96a7f61eb82539bbbbe05e10e50e16533d8..92ae851ef38f0507803f28d78cb892bbf28ff71b 100644 |
| --- a/mojo/services/html_viewer/websockethandle_impl.h |
| +++ b/mojo/services/html_viewer/websockethandle_impl.h |
| @@ -31,16 +31,16 @@ class WebSocketHandleImpl : public blink::WebSocketHandle { |
| virtual ~WebSocketHandleImpl(); |
| // blink::WebSocketHandle methods: |
| - virtual void connect(const blink::WebURL& url, |
| + void connect(const blink::WebURL& url, |
| const blink::WebVector<blink::WebString>& protocols, |
|
sky
2015/03/27 21:24:26
Run git cl format as the spacing needs to be updat
|
| const blink::WebSerializedOrigin& origin, |
| blink::WebSocketHandleClient*) override; |
| - virtual void send(bool fin, |
| + void send(bool fin, |
| MessageType, |
| const char* data, |
| size_t size) override; |
| - virtual void flowControl(int64_t quota) override; |
| - virtual void close(unsigned short code, |
| + void flowControl(int64_t quota) override; |
| + void close(unsigned short code, |
| const blink::WebString& reason) override; |
| // Called when we finished writing to |send_stream_|. |