| Index: net/spdy/spdy_http_stream.cc
|
| diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc
|
| index fedadd7efc409a82317c201454e62f667e78ae3f..ec96145e786fcabc4c5f3481843073842a818b07 100644
|
| --- a/net/spdy/spdy_http_stream.cc
|
| +++ b/net/spdy/spdy_http_stream.cc
|
| @@ -141,6 +141,32 @@ void SpdyHttpStream::Close(bool not_reusable) {
|
| Cancel();
|
| }
|
|
|
| +HttpStream* SpdyHttpStream::RenewStreamForAuth() {
|
| + return NULL;
|
| +}
|
| +
|
| +bool SpdyHttpStream::IsResponseBodyComplete() const {
|
| + if (!stream_)
|
| + return false;
|
| + return stream_->closed();
|
| +}
|
| +
|
| +bool SpdyHttpStream::CanFindEndOfResponse() const {
|
| + return true;
|
| +}
|
| +
|
| +bool SpdyHttpStream::IsMoreDataBuffered() const {
|
| + return false;
|
| +}
|
| +
|
| +bool SpdyHttpStream::IsConnectionReused() const {
|
| + return spdy_session_->IsReused();
|
| +}
|
| +
|
| +void SpdyHttpStream::SetConnectionReused() {
|
| + // SPDY doesn't need an indicator here.
|
| +}
|
| +
|
| int SpdyHttpStream::SendRequest(const HttpRequestHeaders& request_headers,
|
| UploadDataStream* request_body,
|
| HttpResponseInfo* response,
|
|
|