Chromium Code Reviews| Index: net/spdy/spdy_http_stream.cc |
| diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc |
| index 7ae844133890cad55135488700abe4d6ba9e650b..2924b3deb71cfb4a90aa12b57b44bc6f18f88438 100644 |
| --- a/net/spdy/spdy_http_stream.cc |
| +++ b/net/spdy/spdy_http_stream.cc |
| @@ -184,6 +184,10 @@ int64 SpdyHttpStream::GetTotalReceivedBytes() const { |
| return stream_->raw_received_bytes(); |
| } |
| +int64 SpdyHttpStream::GetReceivedBodyLength() const { |
|
mmenke
2014/07/22 14:57:41
This seems to violate the API.
|
| + return 0; |
| +} |
| + |
| bool SpdyHttpStream::GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const { |
| if (stream_closed_) { |
| if (!closed_stream_has_load_timing_info_) |
| @@ -534,4 +538,13 @@ void SpdyHttpStream::SetPriority(RequestPriority priority) { |
| // |stream_|. |
| } |
| +void SpdyHttpStream::SetRestartInfo(int64 read_offset, const void* hash, |
| + size_t hash_length) { |
| + // Nothing to do here. |
| +} |
| + |
| +void SpdyHttpStream::GetHash(void* output, size_t len) { |
| + // Nothing to do here. |
| +} |
| + |
| } // namespace net |