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 14 matching lines...) Expand all Loading... |
25 #include "base/threading/sequenced_worker_pool.h" | 25 #include "base/threading/sequenced_worker_pool.h" |
26 #include "base/threading/thread_task_runner_handle.h" | 26 #include "base/threading/thread_task_runner_handle.h" |
27 #include "components/about_handler/about_protocol_handler.h" | 27 #include "components/about_handler/about_protocol_handler.h" |
28 #include "components/content_settings/core/browser/content_settings_provider.h" | 28 #include "components/content_settings/core/browser/content_settings_provider.h" |
29 #include "components/content_settings/core/browser/cookie_settings.h" | 29 #include "components/content_settings/core/browser/cookie_settings.h" |
30 #include "components/content_settings/core/browser/host_content_settings_map.h" | 30 #include "components/content_settings/core/browser/host_content_settings_map.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/browser_state/chrome_browser_state.h" |
38 #include "ios/chrome/browser/chrome_url_constants.h" | 38 #include "ios/chrome/browser/chrome_url_constants.h" |
39 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" | 39 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" |
40 #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" |
41 #include "ios/chrome/browser/ios_chrome_io_thread.h" | 41 #include "ios/chrome/browser/ios_chrome_io_thread.h" |
42 #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" |
43 #include "ios/chrome/browser/net/ios_chrome_network_delegate.h" | 43 #include "ios/chrome/browser/net/ios_chrome_network_delegate.h" |
44 #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" |
45 #include "ios/chrome/browser/net/proxy_service_factory.h" | 45 #include "ios/chrome/browser/net/proxy_service_factory.h" |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 return std::unique_ptr<net::HttpCache>( | 484 return std::unique_ptr<net::HttpCache>( |
485 new net::HttpCache(session, std::move(main_backend), true)); | 485 new net::HttpCache(session, std::move(main_backend), true)); |
486 } | 486 } |
487 | 487 |
488 std::unique_ptr<net::HttpCache> ChromeBrowserStateIOData::CreateHttpFactory( | 488 std::unique_ptr<net::HttpCache> ChromeBrowserStateIOData::CreateHttpFactory( |
489 net::HttpNetworkSession* shared_session, | 489 net::HttpNetworkSession* shared_session, |
490 std::unique_ptr<net::HttpCache::BackendFactory> backend) const { | 490 std::unique_ptr<net::HttpCache::BackendFactory> backend) const { |
491 return std::unique_ptr<net::HttpCache>( | 491 return std::unique_ptr<net::HttpCache>( |
492 new net::HttpCache(shared_session, std::move(backend), true)); | 492 new net::HttpCache(shared_session, std::move(backend), true)); |
493 } | 493 } |
OLD | NEW |