Index: net/spdy/spdy_proxy_client_socket.cc |
=================================================================== |
--- net/spdy/spdy_proxy_client_socket.cc (revision 144839) |
+++ net/spdy/spdy_proxy_client_socket.cc (working copy) |
@@ -458,6 +458,21 @@ |
return ERR_UNEXPECTED; |
} |
+int SpdyProxyClientSocket::OnSendChunkedBody() { |
+ // Because we use |spdy_stream_| via STATE_OPEN (ala WebSockets) |
+ // OnSendChunkedBody() should never be called. |
+ NOTREACHED(); |
+ return ERR_UNEXPECTED; |
+} |
+ |
+int SpdyProxyClientSocket::OnSendChunkedBodyComplete(int /*status*/, |
+ bool* /*eof*/) { |
+ // Because we use |spdy_stream_| via STATE_OPEN (ala WebSockets) |
+ // OnSendChunkedBodyComplete() should never be called. |
+ NOTREACHED(); |
+ return ERR_UNEXPECTED; |
+} |
+ |
int SpdyProxyClientSocket::OnResponseReceived( |
const SpdyHeaderBlock& response, |
base::Time response_time, |
@@ -550,4 +565,8 @@ |
void SpdyProxyClientSocket::set_chunk_callback(ChunkCallback* /*callback*/) { |
} |
+bool SpdyProxyClientSocket::IsRequestBodyChunked() { |
+ return false; |
+} |
+ |
} // namespace net |