OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/policy/profile_policy_connector_factory.h" | 5 #include "chrome/browser/policy/profile_policy_connector_factory.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
9 #include "chrome/browser/policy/profile_policy_connector.h" | 9 #include "chrome/browser/policy/profile_policy_connector.h" |
10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
12 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 12 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
13 #include "components/user_prefs/pref_registry_syncable.h" | 13 #include "components/pref_registry/pref_registry_syncable.h" |
14 | 14 |
15 #if defined(ENABLE_CONFIGURATION_POLICY) | 15 #if defined(ENABLE_CONFIGURATION_POLICY) |
16 #include "chrome/browser/policy/schema_registry_service.h" | 16 #include "chrome/browser/policy/schema_registry_service.h" |
17 #include "chrome/browser/policy/schema_registry_service_factory.h" | 17 #include "chrome/browser/policy/schema_registry_service_factory.h" |
18 #if defined(OS_CHROMEOS) | 18 #if defined(OS_CHROMEOS) |
19 #include "chrome/browser/chromeos/login/user.h" | 19 #include "chrome/browser/chromeos/login/user.h" |
20 #include "chrome/browser/chromeos/login/user_manager.h" | 20 #include "chrome/browser/chromeos/login/user_manager.h" |
21 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" | 21 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" |
22 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_factory_chrom
eos.h" | 22 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_factory_chrom
eos.h" |
23 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 23 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 #endif | 148 #endif |
149 } | 149 } |
150 | 150 |
151 void ProfilePolicyConnectorFactory::SetEmptyTestingFactory( | 151 void ProfilePolicyConnectorFactory::SetEmptyTestingFactory( |
152 content::BrowserContext* context) {} | 152 content::BrowserContext* context) {} |
153 | 153 |
154 void ProfilePolicyConnectorFactory::CreateServiceNow( | 154 void ProfilePolicyConnectorFactory::CreateServiceNow( |
155 content::BrowserContext* context) {} | 155 content::BrowserContext* context) {} |
156 | 156 |
157 } // namespace policy | 157 } // namespace policy |
OLD | NEW |