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

Unified Diff: net/url_request/url_request_context_builder.h

Issue 2318053004: Remove obsolete QUIC disabling code. (Closed)
Patch Set: Rebase Created 4 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/quic/test_tools/quic_stream_factory_peer.cc ('k') | net/url_request/url_request_context_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context_builder.h
diff --git a/net/url_request/url_request_context_builder.h b/net/url_request/url_request_context_builder.h
index 49bf00f24f5b6619ef5ecd036d01e712d3222b21..29768464feef168a3545ca1f04798ba354d86d22 100644
--- a/net/url_request/url_request_context_builder.h
+++ b/net/url_request/url_request_context_builder.h
@@ -97,10 +97,8 @@ class NET_EXPORT URLRequestContextBuilder {
std::string quic_user_agent_id;
int quic_max_server_configs_stored_in_properties;
bool quic_delay_tcp_race;
- int quic_max_number_of_lossy_connections;
std::unordered_set<std::string> quic_host_whitelist;
bool quic_prefer_aes;
- float quic_packet_loss_threshold;
int quic_idle_connection_timeout_seconds;
QuicTagVector quic_connection_options;
bool quic_close_sessions_on_ip_change;
@@ -237,17 +235,6 @@ class NET_EXPORT URLRequestContextBuilder {
http_network_session_params_.quic_delay_tcp_race = quic_delay_tcp_race;
}
- void set_quic_max_number_of_lossy_connections(
- int quic_max_number_of_lossy_connections) {
- http_network_session_params_.quic_max_number_of_lossy_connections =
- quic_max_number_of_lossy_connections;
- }
-
- void set_quic_packet_loss_threshold(float quic_packet_loss_threshold) {
- http_network_session_params_.quic_packet_loss_threshold =
- quic_packet_loss_threshold;
- }
-
void set_quic_idle_connection_timeout_seconds(
int quic_idle_connection_timeout_seconds) {
http_network_session_params_.quic_idle_connection_timeout_seconds =
« no previous file with comments | « net/quic/test_tools/quic_stream_factory_peer.cc ('k') | net/url_request/url_request_context_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698