SupervisedUserSyncService cleanup: Implement SigninManagerBase::Observer
[chromium-blink-merge.git] / chrome / browser / supervised_user / legacy / supervised_user_sync_service_factory.cc
blob22d025cf69023e31406cc4cbd9e7757e934d76f7
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/legacy/supervised_user_sync_service_factory.h"
7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/signin/signin_manager_factory.h"
9 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 // static
13 SupervisedUserSyncService* SupervisedUserSyncServiceFactory::GetForProfile(
14 Profile* profile) {
15 return static_cast<SupervisedUserSyncService*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
19 // static
20 SupervisedUserSyncServiceFactory*
21 SupervisedUserSyncServiceFactory::GetInstance() {
22 return Singleton<SupervisedUserSyncServiceFactory>::get();
25 SupervisedUserSyncServiceFactory::SupervisedUserSyncServiceFactory()
26 : BrowserContextKeyedServiceFactory(
27 "SupervisedUserSyncService",
28 BrowserContextDependencyManager::GetInstance()) {
29 DependsOn(SigninManagerFactory::GetInstance());
32 SupervisedUserSyncServiceFactory::~SupervisedUserSyncServiceFactory() {}
34 KeyedService* SupervisedUserSyncServiceFactory::BuildServiceInstanceFor(
35 content::BrowserContext* profile) const {
36 return new SupervisedUserSyncService(
37 static_cast<Profile*>(profile));