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

Unified Diff: net/http/http_network_session.cc

Issue 605733006: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert Patch Set 3 Created 6 years, 3 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') | net/quic/crypto/crypto_handshake_message.cc » ('j') | 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 6dd06ea224ad36b8800a7eb2f0de7d01a7864502..1571ecc6a51033f634c9df4e50e15cf91688c9a7 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -91,7 +91,6 @@ HttpNetworkSession::Params::Params()
enable_websocket_over_spdy(false),
enable_quic(false),
enable_quic_port_selection(true),
- enable_quic_time_based_loss_detection(false),
quic_always_require_handshake_confirmation(false),
quic_disable_connection_pooling(false),
quic_clock(NULL),
@@ -134,7 +133,6 @@ HttpNetworkSession::HttpNetworkSession(const Params& params)
params.quic_user_agent_id,
params.quic_supported_versions,
params.enable_quic_port_selection,
- params.enable_quic_time_based_loss_detection,
params.quic_always_require_handshake_confirmation,
params.quic_disable_connection_pooling,
params.quic_connection_options),
@@ -264,8 +262,6 @@ base::Value* HttpNetworkSession::QuicInfoToValue() const {
connection_options->AppendString("'" + QuicUtils::TagToString(*it) + "'");
}
dict->Set("connection_options", connection_options);
- dict->SetBoolean("enable_quic_time_based_loss_detection",
- params_.enable_quic_time_based_loss_detection);
dict->SetString("origin_to_force_quic_on",
params_.origin_to_force_quic_on.ToString());
dict->SetDouble("alternate_protocol_probability_threshold",
« no previous file with comments | « net/http/http_network_session.h ('k') | net/quic/crypto/crypto_handshake_message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698