Index: net/spdy/spdy_session_spdy2_unittest.cc |
=================================================================== |
--- net/spdy/spdy_session_spdy2_unittest.cc (revision 144839) |
+++ net/spdy/spdy_session_spdy2_unittest.cc (working copy) |
@@ -45,6 +45,14 @@ |
return ERR_UNEXPECTED; |
} |
+ virtual int OnSendChunkedBody() { |
+ return ERR_UNEXPECTED; |
+ } |
+ |
+ virtual int OnSendChunkedBodyComplete(int /*status*/, bool* /*eof*/) { |
+ return ERR_UNEXPECTED; |
+ } |
+ |
virtual int OnResponseReceived(const SpdyHeaderBlock& response, |
base::Time response_time, |
int status) { |
@@ -65,6 +73,8 @@ |
virtual void set_chunk_callback(net::ChunkCallback *) {} |
+ virtual bool IsRequestBodyChunked() { return false; } |
+ |
private: |
CompletionCallback callback_; |
}; |