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

Unified Diff: net/http/http_network_session.cc

Issue 185083002: Avoid persisting of QUIC server config information in Stable and Beta (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed rch's comments from Patch set 1 Created 6 years, 10 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/http/http_network_session.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index 75d3e18de84b4a92a941d1c9cbee0054b0addd1a..fbddc98e1199747fe1807d2936f3ba048d32d33a 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -84,6 +84,7 @@ HttpNetworkSession::Params::Params()
enable_quic_https(false),
enable_quic_port_selection(true),
enable_quic_pacing(false),
+ enable_quic_persist_server_info(false),
quic_clock(NULL),
quic_random(NULL),
quic_max_packet_length(kDefaultMaxPacketSize),
@@ -208,6 +209,8 @@ base::Value* HttpNetworkSession::QuicInfoToValue() const {
params_.enable_quic_port_selection);
dict->SetBoolean("enable_quic_pacing",
params_.enable_quic_pacing);
+ dict->SetBoolean("enable_quic_persist_server_info",
+ params_.enable_quic_persist_server_info);
dict->SetString("origin_to_force_quic_on",
params_.origin_to_force_quic_on.ToString());
return dict;
« no previous file with comments | « net/http/http_network_session.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698