diff options
author | erikchen@google.com <erikchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-06 23:04:29 +0000 |
---|---|---|
committer | erikchen@google.com <erikchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-06 23:04:29 +0000 |
commit | a5c493b9b38dcb17d5e621e06a9c9bb9e317c2f9 (patch) | |
tree | 33a045be67757b8924c0bbf15b3bf6d5a3d72991 /net/spdy/spdy_http_stream.h | |
parent | edf3d849086614af42fb5b84d59cefdea5adf4ac (diff) | |
download | chromium_src-a5c493b9b38dcb17d5e621e06a9c9bb9e317c2f9.zip chromium_src-a5c493b9b38dcb17d5e621e06a9c9bb9e317c2f9.tar.gz chromium_src-a5c493b9b38dcb17d5e621e06a9c9bb9e317c2f9.tar.bz2 |
Clean up SpdyStream.
Removed a lot of duplicate/unnecessary logic.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3075023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55308 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_http_stream.h')
-rw-r--r-- | net/spdy/spdy_http_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_http_stream.h b/net/spdy/spdy_http_stream.h index 95134fa..066ed8c 100644 --- a/net/spdy/spdy_http_stream.h +++ b/net/spdy/spdy_http_stream.h @@ -68,7 +68,7 @@ class SpdyHttpStream : public SpdyStream::Delegate, public HttpStream { // Indicates if the response body has been completely read. virtual bool IsResponseBodyComplete() const { - return stream_->response_complete(); + return stream_->closed(); } // With SPDY the end of response is always detectable. |