| Index: net/spdy/spdy_http_stream.cc
|
| diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc
|
| index 1aa1ffe24bd13da9f538f659fd1910d2dfdbc71f..500881901ad18691bd60535dc693e07e267f66cc 100644
|
| --- a/net/spdy/spdy_http_stream.cc
|
| +++ b/net/spdy/spdy_http_stream.cc
|
| @@ -110,7 +110,7 @@ int SpdyHttpStream::ReadResponseHeaders(const CompletionCallback& callback) {
|
|
|
| // Check if we already have the response headers. If so, return synchronously.
|
| if (response_headers_status_ == RESPONSE_HEADERS_ARE_COMPLETE) {
|
| - CHECK(!stream_->IsIdleTemporaryRename());
|
| + CHECK(!stream_->IsIdle());
|
| return OK;
|
| }
|
|
|
| @@ -123,7 +123,7 @@ int SpdyHttpStream::ReadResponseHeaders(const CompletionCallback& callback) {
|
| int SpdyHttpStream::ReadResponseBody(
|
| IOBuffer* buf, int buf_len, const CompletionCallback& callback) {
|
| if (stream_.get())
|
| - CHECK(!stream_->IsIdleTemporaryRename());
|
| + CHECK(!stream_->IsIdle());
|
|
|
| CHECK(buf);
|
| CHECK(buf_len);
|
|
|