| 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 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" | |
| 15 #include "base/single_thread_task_runner.h" | 14 #include "base/single_thread_task_runner.h" |
| 16 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| 17 #include "base/thread_task_runner_handle.h" | 16 #include "base/thread_task_runner_handle.h" |
| 18 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 19 #include "net/base/cache_type.h" | 18 #include "net/base/cache_type.h" |
| 20 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
| 21 #include "net/base/network_delegate_impl.h" | 20 #include "net/base/network_delegate_impl.h" |
| 22 #include "net/base/sdch_manager.h" | 21 #include "net/base/sdch_manager.h" |
| 23 #include "net/cert/cert_verifier.h" | 22 #include "net/cert/cert_verifier.h" |
| 24 #include "net/cookies/cookie_monster.h" | 23 #include "net/cookies/cookie_monster.h" |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 http_network_session_params_.host_mapping_rules; | 383 http_network_session_params_.host_mapping_rules; |
| 385 network_session_params.testing_fixed_http_port = | 384 network_session_params.testing_fixed_http_port = |
| 386 http_network_session_params_.testing_fixed_http_port; | 385 http_network_session_params_.testing_fixed_http_port; |
| 387 network_session_params.testing_fixed_https_port = | 386 network_session_params.testing_fixed_https_port = |
| 388 http_network_session_params_.testing_fixed_https_port; | 387 http_network_session_params_.testing_fixed_https_port; |
| 389 network_session_params.parse_alternative_services = | 388 network_session_params.parse_alternative_services = |
| 390 http_network_session_params_.parse_alternative_services; | 389 http_network_session_params_.parse_alternative_services; |
| 391 network_session_params.enable_alternative_service_with_different_host = | 390 network_session_params.enable_alternative_service_with_different_host = |
| 392 http_network_session_params_ | 391 http_network_session_params_ |
| 393 .enable_alternative_service_with_different_host; | 392 .enable_alternative_service_with_different_host; |
| 394 network_session_params.trusted_spdy_proxy = | |
| 395 http_network_session_params_.trusted_spdy_proxy; | |
| 396 network_session_params.next_protos = http_network_session_params_.next_protos; | 393 network_session_params.next_protos = http_network_session_params_.next_protos; |
| 397 network_session_params.enable_quic = http_network_session_params_.enable_quic; | 394 network_session_params.enable_quic = http_network_session_params_.enable_quic; |
| 398 network_session_params.quic_max_server_configs_stored_in_properties = | 395 network_session_params.quic_max_server_configs_stored_in_properties = |
| 399 http_network_session_params_.quic_max_server_configs_stored_in_properties; | 396 http_network_session_params_.quic_max_server_configs_stored_in_properties; |
| 400 network_session_params.quic_delay_tcp_race = | 397 network_session_params.quic_delay_tcp_race = |
| 401 http_network_session_params_.quic_delay_tcp_race; | 398 http_network_session_params_.quic_delay_tcp_race; |
| 402 network_session_params.quic_max_number_of_lossy_connections = | 399 network_session_params.quic_max_number_of_lossy_connections = |
| 403 http_network_session_params_.quic_max_number_of_lossy_connections; | 400 http_network_session_params_.quic_max_number_of_lossy_connections; |
| 404 network_session_params.quic_packet_loss_threshold = | 401 network_session_params.quic_packet_loss_threshold = |
| 405 http_network_session_params_.quic_packet_loss_threshold; | 402 http_network_session_params_.quic_packet_loss_threshold; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 } | 468 } |
| 472 url_request_interceptors_.clear(); | 469 url_request_interceptors_.clear(); |
| 473 } | 470 } |
| 474 storage->set_job_factory(std::move(top_job_factory)); | 471 storage->set_job_factory(std::move(top_job_factory)); |
| 475 // TODO(willchan): Support sdch. | 472 // TODO(willchan): Support sdch. |
| 476 | 473 |
| 477 return std::move(context); | 474 return std::move(context); |
| 478 } | 475 } |
| 479 | 476 |
| 480 } // namespace net | 477 } // namespace net |
| OLD | NEW |