diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-11 21:45:46 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-11 21:45:46 +0000 |
commit | 62e9197023db07d03729820082a3911aca3b1d0a (patch) | |
tree | a5f56fdced35703664c507d7ff78dbd7129796d9 | |
parent | 4db186865031a81c87a0133adb5ec0e96be1d653 (diff) | |
download | chromium_src-62e9197023db07d03729820082a3911aca3b1d0a.zip chromium_src-62e9197023db07d03729820082a3911aca3b1d0a.tar.gz chromium_src-62e9197023db07d03729820082a3911aca3b1d0a.tar.bz2 |
Remove accidental checkin which was in flip_session.cc.
BUG=none
TEST=none
TBR=jar@chromium.org
Review URL: http://codereview.chromium.org/542015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35945 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/flip/flip_session.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/flip/flip_session.cc b/net/flip/flip_session.cc index 3812108..1f33c69 100644 --- a/net/flip/flip_session.cc +++ b/net/flip/flip_session.cc @@ -205,8 +205,7 @@ FlipSession::FlipSession(const std::string& host, HttpNetworkSession* session) streams_initiated_count_(0), streams_pushed_count_(0), streams_pushed_and_claimed_count_(0), - streams_abandoned_count_(0), - bytes_received_(0) { + streams_abandoned_count_(0) { // TODO(mbelshe): consider randomization of the stream_hi_water_mark. flip_framer_.set_visitor(this); @@ -539,8 +538,6 @@ void FlipSession::OnReadComplete(int bytes_read) { return; } - bytes_received_ += bytes_read; - char *data = read_buffer_->data(); while (bytes_read && flip_framer_.error_code() == flip::FlipFramer::FLIP_NO_ERROR) { |