diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 22:44:26 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 22:44:26 +0000 |
commit | 41d64e8ded3eec5ad56df98085bd205ad1164ee3 (patch) | |
tree | 970141ab3223adc0f729da84714d92a8d4499933 /net/http/http_network_session.h | |
parent | 8ed2d35815bcf433555db5bea6d1e9eeec4b4ca7 (diff) | |
download | chromium_src-41d64e8ded3eec5ad56df98085bd205ad1164ee3.zip chromium_src-41d64e8ded3eec5ad56df98085bd205ad1164ee3.tar.gz chromium_src-41d64e8ded3eec5ad56df98085bd205ad1164ee3.tar.bz2 |
[SPDY] Refactor and clean up SpdySessionPool
Replace the map of keys to lists of sessions to a map
of keys to sessions, since we were already limiting
the lists to be of size 1 anyway.
Remove the functions from SpdySessionPool that were
used mostly by tests. Replace them with functions
in spdy_test_util_common.{h,cc}. Make a bunch of
tests use these functions.
Make the Close*Sessions() behave consistently.
Make SpdySession::CloseSessionOnError() always remove
the session from its pool.
Move the SpdySessionPool tests for spdy_session_unittest.cc
to a new file spdy_session_pool_unittest.cc. Add
a few more for the Close*Sessions() tests.
Remove --max-spdy-sessions-per-domain switch.
Parametrize HttpStreamFactoryTest on NextProto.
Misc. cleanup here and there.
BUG=255701
TBR=rch@chromium.org
Review URL: https://codereview.chromium.org/18226004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210054 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_network_session.h')
-rw-r--r-- | net/http/http_network_session.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h index 1e1af31..3ca928e 100644 --- a/net/http/http_network_session.h +++ b/net/http/http_network_session.h @@ -73,7 +73,6 @@ class NET_EXPORT HttpNetworkSession bool http_pipelining_enabled; uint16 testing_fixed_http_port; uint16 testing_fixed_https_port; - size_t max_spdy_sessions_per_domain; bool force_spdy_single_domain; bool enable_spdy_ip_pooling; bool enable_spdy_credential_frames; |