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/managed_mode/managed_user_settings_service_factory.h" | 5 #include "chrome/browser/supervised_user/supervised_user_settings_service_factor
y.h" |
6 | 6 |
7 #include "chrome/browser/managed_mode/managed_user_settings_service.h" | |
8 #include "chrome/browser/profiles/incognito_helpers.h" | 7 #include "chrome/browser/profiles/incognito_helpers.h" |
9 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/supervised_user/supervised_user_settings_service.h" |
10 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 10 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
11 | 11 |
12 // static | 12 // static |
13 ManagedUserSettingsService* | 13 SupervisedUserSettingsService* |
14 ManagedUserSettingsServiceFactory::GetForProfile(Profile* profile) { | 14 SupervisedUserSettingsServiceFactory::GetForProfile(Profile* profile) { |
15 return static_cast<ManagedUserSettingsService*>( | 15 return static_cast<SupervisedUserSettingsService*>( |
16 GetInstance()->GetServiceForBrowserContext(profile, true)); | 16 GetInstance()->GetServiceForBrowserContext(profile, true)); |
17 } | 17 } |
18 | 18 |
19 // static | 19 // static |
20 ManagedUserSettingsServiceFactory* | 20 SupervisedUserSettingsServiceFactory* |
21 ManagedUserSettingsServiceFactory::GetInstance() { | 21 SupervisedUserSettingsServiceFactory::GetInstance() { |
22 return Singleton<ManagedUserSettingsServiceFactory>::get(); | 22 return Singleton<SupervisedUserSettingsServiceFactory>::get(); |
23 } | 23 } |
24 | 24 |
25 ManagedUserSettingsServiceFactory::ManagedUserSettingsServiceFactory() | 25 SupervisedUserSettingsServiceFactory::SupervisedUserSettingsServiceFactory() |
26 : BrowserContextKeyedServiceFactory( | 26 : BrowserContextKeyedServiceFactory( |
27 "ManagedUserSettingsService", | 27 "SupervisedUserSettingsService", |
28 BrowserContextDependencyManager::GetInstance()) { | 28 BrowserContextDependencyManager::GetInstance()) { |
29 } | 29 } |
30 | 30 |
31 ManagedUserSettingsServiceFactory:: | 31 SupervisedUserSettingsServiceFactory:: |
32 ~ManagedUserSettingsServiceFactory() {} | 32 ~SupervisedUserSettingsServiceFactory() {} |
33 | 33 |
34 KeyedService* ManagedUserSettingsServiceFactory::BuildServiceInstanceFor( | 34 KeyedService* SupervisedUserSettingsServiceFactory::BuildServiceInstanceFor( |
35 content::BrowserContext* profile) const { | 35 content::BrowserContext* profile) const { |
36 return new ManagedUserSettingsService(); | 36 return new SupervisedUserSettingsService(); |
37 } | 37 } |
38 | 38 |
39 content::BrowserContext* | 39 content::BrowserContext* |
40 ManagedUserSettingsServiceFactory::GetBrowserContextToUse( | 40 SupervisedUserSettingsServiceFactory::GetBrowserContextToUse( |
41 content::BrowserContext* context) const { | 41 content::BrowserContext* context) const { |
42 return chrome::GetBrowserContextRedirectedInIncognito(context); | 42 return chrome::GetBrowserContextRedirectedInIncognito(context); |
43 } | 43 } |
OLD | NEW |