| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 #if defined(ENABLE_MANAGED_USERS) | 88 #if defined(ENABLE_MANAGED_USERS) |
| 89 #include "chrome/browser/managed_mode/managed_mode_url_filter.h" | 89 #include "chrome/browser/managed_mode/managed_mode_url_filter.h" |
| 90 #include "chrome/browser/managed_mode/managed_user_service.h" | 90 #include "chrome/browser/managed_mode/managed_user_service.h" |
| 91 #include "chrome/browser/managed_mode/managed_user_service_factory.h" | 91 #include "chrome/browser/managed_mode/managed_user_service_factory.h" |
| 92 #endif | 92 #endif |
| 93 | 93 |
| 94 #if defined(OS_CHROMEOS) | 94 #if defined(OS_CHROMEOS) |
| 95 #include "chrome/browser/chromeos/drive/drive_protocol_handler.h" | 95 #include "chrome/browser/chromeos/drive/drive_protocol_handler.h" |
| 96 #include "chrome/browser/chromeos/login/startup_utils.h" | 96 #include "chrome/browser/chromeos/login/startup_utils.h" |
| 97 #include "chrome/browser/chromeos/login/user.h" | 97 #include "chrome/browser/chromeos/login/users/user.h" |
| 98 #include "chrome/browser/chromeos/login/user_manager.h" | 98 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 99 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" | 99 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" |
| 100 #include "chrome/browser/chromeos/policy/policy_cert_service.h" | 100 #include "chrome/browser/chromeos/policy/policy_cert_service.h" |
| 101 #include "chrome/browser/chromeos/policy/policy_cert_service_factory.h" | 101 #include "chrome/browser/chromeos/policy/policy_cert_service_factory.h" |
| 102 #include "chrome/browser/chromeos/policy/policy_cert_verifier.h" | 102 #include "chrome/browser/chromeos/policy/policy_cert_verifier.h" |
| 103 #include "chrome/browser/chromeos/settings/cros_settings.h" | 103 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 104 #include "chromeos/dbus/cryptohome_client.h" | 104 #include "chromeos/dbus/cryptohome_client.h" |
| 105 #include "chromeos/dbus/dbus_thread_manager.h" | 105 #include "chromeos/dbus/dbus_thread_manager.h" |
| 106 #include "chromeos/settings/cros_settings_names.h" | 106 #include "chromeos/settings/cros_settings_names.h" |
| 107 #include "crypto/nss_util.h" | 107 #include "crypto/nss_util.h" |
| 108 #include "crypto/nss_util_internal.h" | 108 #include "crypto/nss_util_internal.h" |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1169 void ProfileIOData::SetCookieSettingsForTesting( | 1169 void ProfileIOData::SetCookieSettingsForTesting( |
| 1170 CookieSettings* cookie_settings) { | 1170 CookieSettings* cookie_settings) { |
| 1171 DCHECK(!cookie_settings_.get()); | 1171 DCHECK(!cookie_settings_.get()); |
| 1172 cookie_settings_ = cookie_settings; | 1172 cookie_settings_ = cookie_settings; |
| 1173 } | 1173 } |
| 1174 | 1174 |
| 1175 void ProfileIOData::set_signin_names_for_testing( | 1175 void ProfileIOData::set_signin_names_for_testing( |
| 1176 SigninNamesOnIOThread* signin_names) { | 1176 SigninNamesOnIOThread* signin_names) { |
| 1177 signin_names_.reset(signin_names); | 1177 signin_names_.reset(signin_names); |
| 1178 } | 1178 } |
| OLD | NEW |