diff options
author | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-11 20:50:37 +0000 |
---|---|---|
committer | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-11 20:50:37 +0000 |
commit | 18c92e001c72180ef6153c9bf148fb6fa9f5ecb4 (patch) | |
tree | 8bf69e74bdd6ffb2ccd10211b5790c5487cdaf6d /net | |
parent | 05b1cd610660a4481bcf0ee0cdee740ed4ee76ee (diff) | |
download | chromium_src-18c92e001c72180ef6153c9bf148fb6fa9f5ecb4.zip chromium_src-18c92e001c72180ef6153c9bf148fb6fa9f5ecb4.tar.gz chromium_src-18c92e001c72180ef6153c9bf148fb6fa9f5ecb4.tar.bz2 |
We've finished testing with the cwnd fixed at 32, it is clearly worse.
Remove that test and replace it with cwnd10, which fixes the cwnd at 10.
BUG=none
TEST=this is the test
Review URL: http://codereview.chromium.org/6792026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81149 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/spdy/spdy_session.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc index 429d6e4..305ee35 100644 --- a/net/spdy/spdy_session.cc +++ b/net/spdy/spdy_session.cc @@ -1345,8 +1345,8 @@ void SpdySession::SendWindowUpdate(spdy::SpdyStreamId stream_id, // field trial policy. uint32 ApplyCwndFieldTrialPolicy(int cwnd) { base::FieldTrial* trial = base::FieldTrialList::Find("SpdyCwnd"); - if (trial->group_name() == "cwnd32") - return 32; + if (trial->group_name() == "cwnd10") + return 10; else if (trial->group_name() == "cwnd16") return 16; else if (trial->group_name() == "cwndMin16") |