Index: net/spdy/spdy_stream_test_util.cc |
=================================================================== |
--- net/spdy/spdy_stream_test_util.cc (revision 149736) |
+++ net/spdy/spdy_stream_test_util.cc (working copy) |
@@ -55,8 +55,9 @@ |
return status; |
} |
-void TestSpdyStreamDelegate::OnDataReceived(const char* buffer, int bytes) { |
+int TestSpdyStreamDelegate::OnDataReceived(const char* buffer, int bytes) { |
received_data_ += std::string(buffer, bytes); |
+ return OK; |
} |
void TestSpdyStreamDelegate::OnDataSent(int length) { |