| Index: net/spdy/spdy_websocket_stream.h
|
| ===================================================================
|
| --- net/spdy/spdy_websocket_stream.h (revision 144839)
|
| +++ net/spdy/spdy_websocket_stream.h (working copy)
|
| @@ -75,6 +75,8 @@
|
| virtual bool OnSendHeadersComplete(int status) OVERRIDE;
|
| virtual int OnSendBody() OVERRIDE;
|
| virtual int OnSendBodyComplete(int status, bool* eof) OVERRIDE;
|
| + virtual int OnSendChunkedBody() OVERRIDE;
|
| + virtual int OnSendChunkedBodyComplete(int status, bool* eof) OVERRIDE;
|
| virtual int OnResponseReceived(const SpdyHeaderBlock& response,
|
| base::Time response_time,
|
| int status) OVERRIDE;
|
| @@ -82,6 +84,7 @@
|
| virtual void OnDataSent(int length) OVERRIDE;
|
| virtual void OnClose(int status) OVERRIDE;
|
| virtual void set_chunk_callback(ChunkCallback* callback) OVERRIDE;
|
| + virtual bool IsRequestBodyChunked() OVERRIDE;
|
|
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamSpdy2Test, Basic);
|
|
|