Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: net/spdy/spdy_session_pool.cc

Issue 1112093002: Remove unused max_concurrent_streams_limit_ member. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_session_pool.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session_pool.cc
diff --git a/net/spdy/spdy_session_pool.cc b/net/spdy/spdy_session_pool.cc
index d41ef5519247b623cf688420cc3c04998721e798..98a162b13482496bd7d0f94971a28ed44aa2e589 100644
--- a/net/spdy/spdy_session_pool.cc
+++ b/net/spdy/spdy_session_pool.cc
@@ -39,7 +39,6 @@ SpdySessionPool::SpdySessionPool(
size_t session_max_recv_window_size,
size_t stream_max_recv_window_size,
size_t initial_max_concurrent_streams,
- size_t max_concurrent_streams_limit,
SpdySessionPool::TimeFunc time_func,
const std::string& trusted_spdy_proxy)
: http_server_properties_(http_server_properties),
@@ -58,7 +57,6 @@ SpdySessionPool::SpdySessionPool(
session_max_recv_window_size_(session_max_recv_window_size),
stream_max_recv_window_size_(stream_max_recv_window_size),
initial_max_concurrent_streams_(initial_max_concurrent_streams),
- max_concurrent_streams_limit_(max_concurrent_streams_limit),
time_func_(time_func),
trusted_spdy_proxy_(HostPortPair::FromString(trusted_spdy_proxy)) {
DCHECK(default_protocol_ >= kProtoSPDYMinimumVersion &&
@@ -101,9 +99,8 @@ base::WeakPtr<SpdySession> SpdySessionPool::CreateAvailableSessionFromSocket(
verify_domain_authentication_, enable_sending_initial_data_,
enable_compression_, enable_ping_based_connection_checking_,
default_protocol_, session_max_recv_window_size_,
- stream_max_recv_window_size_, initial_max_concurrent_streams_,
- max_concurrent_streams_limit_, time_func_, trusted_spdy_proxy_,
- net_log.net_log()));
+ stream_max_recv_window_size_, initial_max_concurrent_streams_, time_func_,
+ trusted_spdy_proxy_, net_log.net_log()));
new_session->InitializeWithSocket(
connection.Pass(), this, is_secure, certificate_error_code);
« no previous file with comments | « net/spdy/spdy_session_pool.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698