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

Unified Diff: net/spdy/spdy_session.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.h ('k') | net/spdy/spdy_session_pool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.cc
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index 7fabbef565941ddfb79c150a9b996bbef2aa303c..ca0e2b8a52018c079ff75848c90386fd8c7ae43f 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -615,7 +615,6 @@ SpdySession::SpdySession(
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,
TimeFunc time_func,
const HostPortPair& trusted_spdy_proxy,
NetLog* net_log)
@@ -640,9 +639,6 @@ SpdySession::SpdySession(
max_concurrent_streams_(initial_max_concurrent_streams == 0
? kInitialMaxConcurrentStreams
: initial_max_concurrent_streams),
- max_concurrent_streams_limit_(max_concurrent_streams_limit == 0
- ? kMaxConcurrentStreamLimit
- : max_concurrent_streams_limit),
max_concurrent_pushed_streams_(kMaxConcurrentPushedStreams),
streams_initiated_count_(0),
streams_pushed_count_(0),
« no previous file with comments | « net/spdy/spdy_session.h ('k') | net/spdy/spdy_session_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698