diff options
Diffstat (limited to 'net/spdy/spdy_stream_unittest.cc')
-rw-r--r-- | net/spdy/spdy_stream_unittest.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/spdy/spdy_stream_unittest.cc b/net/spdy/spdy_stream_unittest.cc index 94b08ec..03a5180 100644 --- a/net/spdy/spdy_stream_unittest.cc +++ b/net/spdy/spdy_stream_unittest.cc @@ -55,10 +55,14 @@ class TestSpdyStreamDelegate : public SpdyStream::Delegate { ADD_FAILURE() << "OnSendBody should not be called"; return ERR_UNEXPECTED; } - virtual bool OnSendBodyComplete(int status) { + virtual void OnSendBodyComplete(int status) { ADD_FAILURE() << "OnSendBodyComplete should not be called"; + } + + virtual bool IsFinishedSendingBody() { return true; } + virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response, base::Time response_time, int status) { |