diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-02 16:33:53 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-02 16:33:53 +0000 |
commit | c25108500d8b37f8e8fe194070e99eb8550cc9a5 (patch) | |
tree | 8a0a6d40f14710491959134704ba49173aadb4a3 /net/spdy | |
parent | 02e3c8a549a9f103d2cb349abd422ac1df323a9d (diff) | |
download | chromium_src-c25108500d8b37f8e8fe194070e99eb8550cc9a5.zip chromium_src-c25108500d8b37f8e8fe194070e99eb8550cc9a5.tar.gz chromium_src-c25108500d8b37f8e8fe194070e99eb8550cc9a5.tar.bz2 |
call SpdySession::flow_control() statically, instead of as
spdy_session_->flow_control() in spdy_http_stream.cc.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/5518001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_http_stream.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc index 89002cb..286d557 100644 --- a/net/spdy/spdy_http_stream.cc +++ b/net/spdy/spdy_http_stream.cc @@ -117,7 +117,7 @@ int SpdyHttpStream::ReadResponseBody( } bytes_read += bytes_to_copy; } - if (spdy_session_->flow_control()) + if (SpdySession::flow_control()) stream_->IncreaseRecvWindowSize(bytes_read); return bytes_read; } else if (stream_->closed()) { |