Chromium Code Reviews| Index: net/spdy/spdy_proxy_client_socket.h |
| diff --git a/net/spdy/spdy_proxy_client_socket.h b/net/spdy/spdy_proxy_client_socket.h |
| index f66283e14e70a8e14ad30c9042d9fa1971f89d86..9929f55438f9fffd1065b183c2e87207cfe721e6 100644 |
| --- a/net/spdy/spdy_proxy_client_socket.h |
| +++ b/net/spdy/spdy_proxy_client_socket.h |
| @@ -88,13 +88,14 @@ class SpdyProxyClientSocket : public ProxyClientSocket, |
| // SpdyStream::Delegate methods: |
| virtual bool OnSendHeadersComplete(int status); |
| virtual int OnSendBody(); |
| - virtual bool OnSendBodyComplete(int status); |
| + virtual bool OnSendBodyComplete(int* status); |
| virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response, |
| base::Time response_time, |
| int status); |
| virtual void OnDataReceived(const char* data, int length); |
| virtual void OnDataSent(int length); |
| virtual void OnClose(int status); |
| + virtual void set_chunk_callback(ChunkCallback* callback) {} |
|
willchan no longer on Chromium
2011/02/01 23:35:59
If you're ignoring the parameter, please document
|
| private: |
| enum State { |