| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/chromeos/policy/policy_cert_service_factory.h" | 5 #include "chrome/browser/chromeos/policy/policy_cert_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "base/prefs/pref_registry_simple.h" | |
| 9 #include "base/prefs/pref_service.h" | |
| 10 #include "base/prefs/scoped_user_pref_update.h" | |
| 11 #include "chrome/browser/browser_process.h" | 8 #include "chrome/browser/browser_process.h" |
| 12 #include "chrome/browser/chromeos/policy/policy_cert_service.h" | 9 #include "chrome/browser/chromeos/policy/policy_cert_service.h" |
| 13 #include "chrome/browser/chromeos/policy/policy_cert_verifier.h" | 10 #include "chrome/browser/chromeos/policy/policy_cert_verifier.h" |
| 14 #include "chrome/browser/chromeos/policy/user_network_configuration_updater_fact
ory.h" | 11 #include "chrome/browser/chromeos/policy/user_network_configuration_updater_fact
ory.h" |
| 15 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 12 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| 16 #include "chrome/browser/lifetime/application_lifetime.h" | 13 #include "chrome/browser/lifetime/application_lifetime.h" |
| 17 #include "chrome/browser/profiles/incognito_helpers.h" | 14 #include "chrome/browser/profiles/incognito_helpers.h" |
| 18 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 19 #include "chrome/common/pref_names.h" | 16 #include "chrome/common/pref_names.h" |
| 20 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 17 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 21 #include "components/pref_registry/pref_registry_syncable.h" | 18 #include "components/pref_registry/pref_registry_syncable.h" |
| 19 #include "components/prefs/pref_registry_simple.h" |
| 20 #include "components/prefs/pref_service.h" |
| 21 #include "components/prefs/scoped_user_pref_update.h" |
| 22 #include "components/user_manager/user_manager.h" | 22 #include "components/user_manager/user_manager.h" |
| 23 | 23 |
| 24 namespace policy { | 24 namespace policy { |
| 25 | 25 |
| 26 // static | 26 // static |
| 27 PolicyCertService* PolicyCertServiceFactory::GetForProfile(Profile* profile) { | 27 PolicyCertService* PolicyCertServiceFactory::GetForProfile(Profile* profile) { |
| 28 return static_cast<PolicyCertService*>( | 28 return static_cast<PolicyCertService*>( |
| 29 GetInstance()->GetServiceForBrowserContext(profile, false)); | 29 GetInstance()->GetServiceForBrowserContext(profile, false)); |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 // TODO(joaodasilva): this is used for backwards compatibility. | 141 // TODO(joaodasilva): this is used for backwards compatibility. |
| 142 // Remove once it's not necessary anymore. | 142 // Remove once it's not necessary anymore. |
| 143 registry->RegisterBooleanPref(prefs::kUsedPolicyCertificatesOnce, false); | 143 registry->RegisterBooleanPref(prefs::kUsedPolicyCertificatesOnce, false); |
| 144 } | 144 } |
| 145 | 145 |
| 146 bool PolicyCertServiceFactory::ServiceIsNULLWhileTesting() const { | 146 bool PolicyCertServiceFactory::ServiceIsNULLWhileTesting() const { |
| 147 return true; | 147 return true; |
| 148 } | 148 } |
| 149 | 149 |
| 150 } // namespace policy | 150 } // namespace policy |
| OLD | NEW |