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

Unified Diff: net/http/http_network_session.h

Issue 11415219: Move a number of static variables SPDY to HttpNetworkSession::Params. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comments Created 8 years 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
Index: net/http/http_network_session.h
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h
index 47abaec02872045b4e5c80959f36b1da55d892c4..d47b5a49cd07fa9b87e02cde4cf27646a0ffe45f 100644
--- a/net/http/http_network_session.h
+++ b/net/http/http_network_session.h
@@ -67,6 +67,17 @@ 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;
+ bool enable_spdy_compression;
+ bool enable_spdy_ping_based_connection_checking;
+ NextProto spdy_default_protocol;
+ size_t spdy_initial_recv_window_size;
+ size_t spdy_initial_max_concurrent_streams;
+ size_t spdy_max_concurrent_streams_limit;
+ SpdySessionPool::TimeFunc time_func;
std::string trusted_spdy_proxy;
};

Powered by Google App Engine
This is Rietveld 408576698