| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ios/chrome/browser/ios_chrome_io_thread.h" | 5 #include "ios/chrome/browser/ios_chrome_io_thread.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 #include "net/http/http_auth_preferences.h" | 59 #include "net/http/http_auth_preferences.h" |
| 60 #include "net/http/http_network_layer.h" | 60 #include "net/http/http_network_layer.h" |
| 61 #include "net/http/http_server_properties_impl.h" | 61 #include "net/http/http_server_properties_impl.h" |
| 62 #include "net/log/net_log_event_type.h" | 62 #include "net/log/net_log_event_type.h" |
| 63 #include "net/nqe/external_estimate_provider.h" | 63 #include "net/nqe/external_estimate_provider.h" |
| 64 #include "net/nqe/network_quality_estimator.h" | 64 #include "net/nqe/network_quality_estimator.h" |
| 65 #include "net/proxy/proxy_config_service.h" | 65 #include "net/proxy/proxy_config_service.h" |
| 66 #include "net/proxy/proxy_script_fetcher_impl.h" | 66 #include "net/proxy/proxy_script_fetcher_impl.h" |
| 67 #include "net/proxy/proxy_service.h" | 67 #include "net/proxy/proxy_service.h" |
| 68 #include "net/socket/tcp_client_socket.h" | 68 #include "net/socket/tcp_client_socket.h" |
| 69 #include "net/spdy/spdy_session.h" | 69 #include "net/spdy/chromium/spdy_session.h" |
| 70 #include "net/ssl/channel_id_service.h" | 70 #include "net/ssl/channel_id_service.h" |
| 71 #include "net/ssl/default_channel_id_store.h" | 71 #include "net/ssl/default_channel_id_store.h" |
| 72 #include "net/url_request/data_protocol_handler.h" | 72 #include "net/url_request/data_protocol_handler.h" |
| 73 #include "net/url_request/file_protocol_handler.h" | 73 #include "net/url_request/file_protocol_handler.h" |
| 74 #include "net/url_request/static_http_user_agent_settings.h" | 74 #include "net/url_request/static_http_user_agent_settings.h" |
| 75 #include "net/url_request/url_request_context.h" | 75 #include "net/url_request/url_request_context.h" |
| 76 #include "net/url_request/url_request_context_builder.h" | 76 #include "net/url_request/url_request_context_builder.h" |
| 77 #include "net/url_request/url_request_context_getter.h" | 77 #include "net/url_request/url_request_context_getter.h" |
| 78 #include "net/url_request/url_request_job_factory_impl.h" | 78 #include "net/url_request/url_request_job_factory_impl.h" |
| 79 #include "url/url_constants.h" | 79 #include "url/url_constants.h" |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 | 568 |
| 569 globals->system_http_network_session.reset( | 569 globals->system_http_network_session.reset( |
| 570 new net::HttpNetworkSession(system_params)); | 570 new net::HttpNetworkSession(system_params)); |
| 571 globals->system_http_transaction_factory.reset( | 571 globals->system_http_transaction_factory.reset( |
| 572 new net::HttpNetworkLayer(globals->system_http_network_session.get())); | 572 new net::HttpNetworkLayer(globals->system_http_network_session.get())); |
| 573 context->set_http_transaction_factory( | 573 context->set_http_transaction_factory( |
| 574 globals->system_http_transaction_factory.get()); | 574 globals->system_http_transaction_factory.get()); |
| 575 | 575 |
| 576 return context; | 576 return context; |
| 577 } | 577 } |
| OLD | NEW |