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

Unified Diff: net/spdy/spdy_session_pool.h

Issue 1061853002: Emit session-level WINDOW_UPDATEs less frequently. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: comments in #5. 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.cc ('k') | net/spdy/spdy_session_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session_pool.h
diff --git a/net/spdy/spdy_session_pool.h b/net/spdy/spdy_session_pool.h
index 32b4ee33bde286a3189d1f2c70d0eade17369065..7a8c2f50f87908dc8d9fcbafabfa5d88bccb8b8f 100644
--- a/net/spdy/spdy_session_pool.h
+++ b/net/spdy/spdy_session_pool.h
@@ -56,7 +56,8 @@ class NET_EXPORT SpdySessionPool
bool enable_compression,
bool enable_ping_based_connection_checking,
NextProto default_protocol,
- size_t stream_initial_recv_window_size,
+ 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,
@@ -220,7 +221,8 @@ class NET_EXPORT SpdySessionPool
bool enable_compression_;
bool enable_ping_based_connection_checking_;
const NextProto default_protocol_;
- size_t stream_initial_recv_window_size_;
+ 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_;
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | net/spdy/spdy_session_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698