1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/supervised_user/supervised_user_shared_settings_service_factory.h"
7 #include "chrome/browser/supervised_user/supervised_user_shared_settings_service.h"
8 #include "components/keyed_service/content/browser_context_dependency_manager.h"
9 #include "components/user_prefs/user_prefs.h"
10 #include "content/public/browser/browser_context.h"
13 SupervisedUserSharedSettingsService
*
14 SupervisedUserSharedSettingsServiceFactory::GetForBrowserContext(
15 content::BrowserContext
* profile
) {
16 return static_cast<SupervisedUserSharedSettingsService
*>(
17 GetInstance()->GetServiceForBrowserContext(profile
, true));
21 SupervisedUserSharedSettingsServiceFactory
*
22 SupervisedUserSharedSettingsServiceFactory::GetInstance() {
23 return Singleton
<SupervisedUserSharedSettingsServiceFactory
>::get();
26 SupervisedUserSharedSettingsServiceFactory::
27 SupervisedUserSharedSettingsServiceFactory()
28 : BrowserContextKeyedServiceFactory(
29 "SupervisedUserSharedSettingsService",
30 BrowserContextDependencyManager::GetInstance()) {}
32 SupervisedUserSharedSettingsServiceFactory::
33 ~SupervisedUserSharedSettingsServiceFactory() {}
36 SupervisedUserSharedSettingsServiceFactory::BuildServiceInstanceFor(
37 content::BrowserContext
* profile
) const {
38 return new SupervisedUserSharedSettingsService(
39 user_prefs::UserPrefs::Get(profile
));