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

Side by Side Diff: net/url_request/url_request_context_builder.cc

Issue 2115213002: Disable SPDY/3.1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on https://crrev.com/2129973002. Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « net/url_request/url_request_context_builder.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/url_request/url_request_context_builder.h" 5 #include "net/url_request/url_request_context_builder.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 URLRequestContextBuilder::HttpCacheParams::HttpCacheParams() 175 URLRequestContextBuilder::HttpCacheParams::HttpCacheParams()
176 : type(IN_MEMORY), 176 : type(IN_MEMORY),
177 max_size(0) {} 177 max_size(0) {}
178 URLRequestContextBuilder::HttpCacheParams::~HttpCacheParams() {} 178 URLRequestContextBuilder::HttpCacheParams::~HttpCacheParams() {}
179 179
180 URLRequestContextBuilder::HttpNetworkSessionParams::HttpNetworkSessionParams() 180 URLRequestContextBuilder::HttpNetworkSessionParams::HttpNetworkSessionParams()
181 : ignore_certificate_errors(false), 181 : ignore_certificate_errors(false),
182 host_mapping_rules(NULL), 182 host_mapping_rules(NULL),
183 testing_fixed_http_port(0), 183 testing_fixed_http_port(0),
184 testing_fixed_https_port(0), 184 testing_fixed_https_port(0),
185 enable_spdy31(false),
186 enable_http2(true), 185 enable_http2(true),
187 enable_quic(false), 186 enable_quic(false),
188 quic_max_server_configs_stored_in_properties(0), 187 quic_max_server_configs_stored_in_properties(0),
189 quic_delay_tcp_race(true), 188 quic_delay_tcp_race(true),
190 quic_max_number_of_lossy_connections(0), 189 quic_max_number_of_lossy_connections(0),
191 quic_prefer_aes(false), 190 quic_prefer_aes(false),
192 quic_packet_loss_threshold(1.0f), 191 quic_packet_loss_threshold(1.0f),
193 quic_idle_connection_timeout_seconds(kIdleConnectionTimeoutSeconds), 192 quic_idle_connection_timeout_seconds(kIdleConnectionTimeoutSeconds),
194 quic_close_sessions_on_ip_change(false), 193 quic_close_sessions_on_ip_change(false),
195 quic_migrate_sessions_on_network_change(false), 194 quic_migrate_sessions_on_network_change(false),
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 http_cache_params_ = params; 238 http_cache_params_ = params;
240 } 239 }
241 240
242 void URLRequestContextBuilder::DisableHttpCache() { 241 void URLRequestContextBuilder::DisableHttpCache() {
243 http_cache_enabled_ = false; 242 http_cache_enabled_ = false;
244 http_cache_params_ = HttpCacheParams(); 243 http_cache_params_ = HttpCacheParams();
245 } 244 }
246 245
247 void URLRequestContextBuilder::SetSpdyAndQuicEnabled(bool spdy_enabled, 246 void URLRequestContextBuilder::SetSpdyAndQuicEnabled(bool spdy_enabled,
248 bool quic_enabled) { 247 bool quic_enabled) {
249 http_network_session_params_.enable_spdy31 = spdy_enabled;
250 http_network_session_params_.enable_http2 = spdy_enabled; 248 http_network_session_params_.enable_http2 = spdy_enabled;
251 http_network_session_params_.enable_quic = quic_enabled; 249 http_network_session_params_.enable_quic = quic_enabled;
252 } 250 }
253 251
254 void URLRequestContextBuilder::SetCertVerifier( 252 void URLRequestContextBuilder::SetCertVerifier(
255 std::unique_ptr<CertVerifier> cert_verifier) { 253 std::unique_ptr<CertVerifier> cert_verifier) {
256 cert_verifier_ = std::move(cert_verifier); 254 cert_verifier_ = std::move(cert_verifier);
257 } 255 }
258 256
259 void URLRequestContextBuilder::SetInterceptors( 257 void URLRequestContextBuilder::SetInterceptors(
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 SetHttpNetworkSessionComponents(context.get(), &network_session_params); 405 SetHttpNetworkSessionComponents(context.get(), &network_session_params);
408 406
409 network_session_params.ignore_certificate_errors = 407 network_session_params.ignore_certificate_errors =
410 http_network_session_params_.ignore_certificate_errors; 408 http_network_session_params_.ignore_certificate_errors;
411 network_session_params.host_mapping_rules = 409 network_session_params.host_mapping_rules =
412 http_network_session_params_.host_mapping_rules; 410 http_network_session_params_.host_mapping_rules;
413 network_session_params.testing_fixed_http_port = 411 network_session_params.testing_fixed_http_port =
414 http_network_session_params_.testing_fixed_http_port; 412 http_network_session_params_.testing_fixed_http_port;
415 network_session_params.testing_fixed_https_port = 413 network_session_params.testing_fixed_https_port =
416 http_network_session_params_.testing_fixed_https_port; 414 http_network_session_params_.testing_fixed_https_port;
417 network_session_params.enable_spdy31 =
418 http_network_session_params_.enable_spdy31;
419 network_session_params.enable_http2 = 415 network_session_params.enable_http2 =
420 http_network_session_params_.enable_http2; 416 http_network_session_params_.enable_http2;
421 network_session_params.enable_quic = http_network_session_params_.enable_quic; 417 network_session_params.enable_quic = http_network_session_params_.enable_quic;
422 network_session_params.quic_max_server_configs_stored_in_properties = 418 network_session_params.quic_max_server_configs_stored_in_properties =
423 http_network_session_params_.quic_max_server_configs_stored_in_properties; 419 http_network_session_params_.quic_max_server_configs_stored_in_properties;
424 network_session_params.quic_delay_tcp_race = 420 network_session_params.quic_delay_tcp_race =
425 http_network_session_params_.quic_delay_tcp_race; 421 http_network_session_params_.quic_delay_tcp_race;
426 network_session_params.quic_max_number_of_lossy_connections = 422 network_session_params.quic_max_number_of_lossy_connections =
427 http_network_session_params_.quic_max_number_of_lossy_connections; 423 http_network_session_params_.quic_max_number_of_lossy_connections;
428 network_session_params.quic_packet_loss_threshold = 424 network_session_params.quic_packet_loss_threshold =
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 } 519 }
524 url_request_interceptors_.clear(); 520 url_request_interceptors_.clear();
525 } 521 }
526 storage->set_job_factory(std::move(top_job_factory)); 522 storage->set_job_factory(std::move(top_job_factory));
527 // TODO(willchan): Support sdch. 523 // TODO(willchan): Support sdch.
528 524
529 return std::move(context); 525 return std::move(context);
530 } 526 }
531 527
532 } // namespace net 528 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/url_request_context_builder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698