| 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/browser_state/chrome_browser_state_io_data.h" | 5 #include "ios/chrome/browser/browser_state/chrome_browser_state_io_data.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "components/content_settings/core/browser/content_settings_provider.h" | 27 #include "components/content_settings/core/browser/content_settings_provider.h" |
| 28 #include "components/content_settings/core/browser/cookie_settings.h" | 28 #include "components/content_settings/core/browser/cookie_settings.h" |
| 29 #include "components/content_settings/core/browser/host_content_settings_map.h" | 29 #include "components/content_settings/core/browser/host_content_settings_map.h" |
| 30 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" | 30 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" |
| 31 #include "components/metrics/metrics_pref_names.h" | 31 #include "components/metrics/metrics_pref_names.h" |
| 32 #include "components/net_log/chrome_net_log.h" | 32 #include "components/net_log/chrome_net_log.h" |
| 33 #include "components/prefs/pref_service.h" | 33 #include "components/prefs/pref_service.h" |
| 34 #include "components/signin/core/common/signin_pref_names.h" | 34 #include "components/signin/core/common/signin_pref_names.h" |
| 35 #include "components/sync_driver/pref_names.h" | 35 #include "components/sync_driver/pref_names.h" |
| 36 #include "ios/chrome/browser/application_context.h" | 36 #include "ios/chrome/browser/application_context.h" |
| 37 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 37 #include "ios/chrome/browser/chrome_url_constants.h" | 38 #include "ios/chrome/browser/chrome_url_constants.h" |
| 38 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" | 39 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" |
| 39 #include "ios/chrome/browser/content_settings/host_content_settings_map_factory.
h" | 40 #include "ios/chrome/browser/content_settings/host_content_settings_map_factory.
h" |
| 40 #include "ios/chrome/browser/ios_chrome_io_thread.h" | 41 #include "ios/chrome/browser/ios_chrome_io_thread.h" |
| 41 #include "ios/chrome/browser/net/ios_chrome_http_user_agent_settings.h" | 42 #include "ios/chrome/browser/net/ios_chrome_http_user_agent_settings.h" |
| 42 #include "ios/chrome/browser/net/ios_chrome_network_delegate.h" | 43 #include "ios/chrome/browser/net/ios_chrome_network_delegate.h" |
| 43 #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" | 44 #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" |
| 44 #include "ios/chrome/browser/net/proxy_service_factory.h" | 45 #include "ios/chrome/browser/net/proxy_service_factory.h" |
| 45 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 46 #include "ios/web/public/web_thread.h" | 46 #include "ios/web/public/web_thread.h" |
| 47 #include "net/base/keygen_handler.h" | 47 #include "net/base/keygen_handler.h" |
| 48 #include "net/base/network_quality_estimator.h" | 48 #include "net/base/network_quality_estimator.h" |
| 49 #include "net/cert/cert_verifier.h" | 49 #include "net/cert/cert_verifier.h" |
| 50 #include "net/cert/multi_log_ct_verifier.h" | 50 #include "net/cert/multi_log_ct_verifier.h" |
| 51 #include "net/cookies/canonical_cookie.h" | 51 #include "net/cookies/canonical_cookie.h" |
| 52 #include "net/http/http_network_session.h" | 52 #include "net/http/http_network_session.h" |
| 53 #include "net/http/http_transaction_factory.h" | 53 #include "net/http/http_transaction_factory.h" |
| 54 #include "net/http/http_util.h" | 54 #include "net/http/http_util.h" |
| 55 #include "net/http/transport_security_persister.h" | 55 #include "net/http/transport_security_persister.h" |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 return scoped_ptr<net::HttpCache>( | 483 return scoped_ptr<net::HttpCache>( |
| 484 new net::HttpCache(session, std::move(main_backend), true)); | 484 new net::HttpCache(session, std::move(main_backend), true)); |
| 485 } | 485 } |
| 486 | 486 |
| 487 scoped_ptr<net::HttpCache> ChromeBrowserStateIOData::CreateHttpFactory( | 487 scoped_ptr<net::HttpCache> ChromeBrowserStateIOData::CreateHttpFactory( |
| 488 net::HttpNetworkSession* shared_session, | 488 net::HttpNetworkSession* shared_session, |
| 489 scoped_ptr<net::HttpCache::BackendFactory> backend) const { | 489 scoped_ptr<net::HttpCache::BackendFactory> backend) const { |
| 490 return scoped_ptr<net::HttpCache>( | 490 return scoped_ptr<net::HttpCache>( |
| 491 new net::HttpCache(shared_session, std::move(backend), true)); | 491 new net::HttpCache(shared_session, std::move(backend), true)); |
| 492 } | 492 } |
| OLD | NEW |