| 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 "chrome/browser/profiles/profile_io_data.h" | 5 #include "chrome/browser/profiles/profile_io_data.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 #include "net/url_request/file_protocol_handler.h" | 77 #include "net/url_request/file_protocol_handler.h" |
| 78 #include "net/url_request/ftp_protocol_handler.h" | 78 #include "net/url_request/ftp_protocol_handler.h" |
| 79 #include "net/url_request/protocol_intercept_job_factory.h" | 79 #include "net/url_request/protocol_intercept_job_factory.h" |
| 80 #include "net/url_request/url_request.h" | 80 #include "net/url_request/url_request.h" |
| 81 #include "net/url_request/url_request_file_job.h" | 81 #include "net/url_request/url_request_file_job.h" |
| 82 #include "net/url_request/url_request_job_factory_impl.h" | 82 #include "net/url_request/url_request_job_factory_impl.h" |
| 83 | 83 |
| 84 #if defined(ENABLE_CONFIGURATION_POLICY) | 84 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 85 #include "chrome/browser/policy/cloud/policy_header_service_factory.h" | 85 #include "chrome/browser/policy/cloud/policy_header_service_factory.h" |
| 86 #include "chrome/browser/policy/policy_helpers.h" | 86 #include "chrome/browser/policy/policy_helpers.h" |
| 87 #include "chrome/browser/policy/url_blacklist_manager.h" | |
| 88 #include "components/policy/core/common/cloud/policy_header_io_helper.h" | 87 #include "components/policy/core/common/cloud/policy_header_io_helper.h" |
| 89 #include "components/policy/core/common/cloud/policy_header_service.h" | 88 #include "components/policy/core/common/cloud/policy_header_service.h" |
| 90 #include "components/policy/core/common/cloud/user_cloud_policy_manager.h" | 89 #include "components/policy/core/common/cloud/user_cloud_policy_manager.h" |
| 90 #include "components/policy/core/common/url_blacklist_manager.h" |
| 91 #endif | 91 #endif |
| 92 | 92 |
| 93 #if defined(ENABLE_MANAGED_USERS) | 93 #if defined(ENABLE_MANAGED_USERS) |
| 94 #include "chrome/browser/managed_mode/managed_mode_url_filter.h" | 94 #include "chrome/browser/managed_mode/managed_mode_url_filter.h" |
| 95 #include "chrome/browser/managed_mode/managed_user_service.h" | 95 #include "chrome/browser/managed_mode/managed_user_service.h" |
| 96 #include "chrome/browser/managed_mode/managed_user_service_factory.h" | 96 #include "chrome/browser/managed_mode/managed_user_service_factory.h" |
| 97 #endif | 97 #endif |
| 98 | 98 |
| 99 #if defined(OS_CHROMEOS) | 99 #if defined(OS_CHROMEOS) |
| 100 #include "chrome/browser/chromeos/drive/drive_protocol_handler.h" | 100 #include "chrome/browser/chromeos/drive/drive_protocol_handler.h" |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1201 void ProfileIOData::SetCookieSettingsForTesting( | 1201 void ProfileIOData::SetCookieSettingsForTesting( |
| 1202 CookieSettings* cookie_settings) { | 1202 CookieSettings* cookie_settings) { |
| 1203 DCHECK(!cookie_settings_.get()); | 1203 DCHECK(!cookie_settings_.get()); |
| 1204 cookie_settings_ = cookie_settings; | 1204 cookie_settings_ = cookie_settings; |
| 1205 } | 1205 } |
| 1206 | 1206 |
| 1207 void ProfileIOData::set_signin_names_for_testing( | 1207 void ProfileIOData::set_signin_names_for_testing( |
| 1208 SigninNamesOnIOThread* signin_names) { | 1208 SigninNamesOnIOThread* signin_names) { |
| 1209 signin_names_.reset(signin_names); | 1209 signin_names_.reset(signin_names); |
| 1210 } | 1210 } |
| OLD | NEW |