OLD | NEW |
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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 http_network_session_params_.testing_fixed_http_port; | 420 http_network_session_params_.testing_fixed_http_port; |
421 network_session_params.testing_fixed_https_port = | 421 network_session_params.testing_fixed_https_port = |
422 http_network_session_params_.testing_fixed_https_port; | 422 http_network_session_params_.testing_fixed_https_port; |
423 network_session_params.enable_http2 = | 423 network_session_params.enable_http2 = |
424 http_network_session_params_.enable_http2; | 424 http_network_session_params_.enable_http2; |
425 network_session_params.enable_quic = http_network_session_params_.enable_quic; | 425 network_session_params.enable_quic = http_network_session_params_.enable_quic; |
426 network_session_params.quic_max_server_configs_stored_in_properties = | 426 network_session_params.quic_max_server_configs_stored_in_properties = |
427 http_network_session_params_.quic_max_server_configs_stored_in_properties; | 427 http_network_session_params_.quic_max_server_configs_stored_in_properties; |
428 network_session_params.quic_delay_tcp_race = | 428 network_session_params.quic_delay_tcp_race = |
429 http_network_session_params_.quic_delay_tcp_race; | 429 http_network_session_params_.quic_delay_tcp_race; |
| 430 network_session_params.quic_max_number_of_lossy_connections = |
| 431 http_network_session_params_.quic_max_number_of_lossy_connections; |
| 432 network_session_params.quic_packet_loss_threshold = |
| 433 http_network_session_params_.quic_packet_loss_threshold; |
430 network_session_params.quic_idle_connection_timeout_seconds = | 434 network_session_params.quic_idle_connection_timeout_seconds = |
431 http_network_session_params_.quic_idle_connection_timeout_seconds; | 435 http_network_session_params_.quic_idle_connection_timeout_seconds; |
432 network_session_params.quic_connection_options = | 436 network_session_params.quic_connection_options = |
433 http_network_session_params_.quic_connection_options; | 437 http_network_session_params_.quic_connection_options; |
434 network_session_params.quic_host_whitelist = | 438 network_session_params.quic_host_whitelist = |
435 http_network_session_params_.quic_host_whitelist; | 439 http_network_session_params_.quic_host_whitelist; |
436 network_session_params.quic_close_sessions_on_ip_change = | 440 network_session_params.quic_close_sessions_on_ip_change = |
437 http_network_session_params_.quic_close_sessions_on_ip_change; | 441 http_network_session_params_.quic_close_sessions_on_ip_change; |
438 network_session_params.quic_migrate_sessions_on_network_change = | 442 network_session_params.quic_migrate_sessions_on_network_change = |
439 http_network_session_params_.quic_migrate_sessions_on_network_change; | 443 http_network_session_params_.quic_migrate_sessions_on_network_change; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 } | 529 } |
526 url_request_interceptors_.clear(); | 530 url_request_interceptors_.clear(); |
527 } | 531 } |
528 storage->set_job_factory(std::move(top_job_factory)); | 532 storage->set_job_factory(std::move(top_job_factory)); |
529 // TODO(willchan): Support sdch. | 533 // TODO(willchan): Support sdch. |
530 | 534 |
531 return std::move(context); | 535 return std::move(context); |
532 } | 536 } |
533 | 537 |
534 } // namespace net | 538 } // namespace net |
OLD | NEW |