blob: e24944644a221a5208d249a958a587d4e1b1e2d6 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/supervised_user/child_accounts/child_account_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/supervised_user/child_accounts/child_account_service.h"
#include "chrome/browser/supervised_user/supervised_user_service_factory.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
// static
ChildAccountService* ChildAccountServiceFactory::GetForProfile(
Profile* profile) {
return static_cast<ChildAccountService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
ChildAccountServiceFactory* ChildAccountServiceFactory::GetInstance() {
return base::Singleton<ChildAccountServiceFactory>::get();
}
ChildAccountServiceFactory::ChildAccountServiceFactory()
: BrowserContextKeyedServiceFactory(
"ChildAccountService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(IdentityManagerFactory::GetInstance());
DependsOn(SupervisedUserServiceFactory::GetInstance());
}
ChildAccountServiceFactory::~ChildAccountServiceFactory() {}
KeyedService* ChildAccountServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new ChildAccountService(static_cast<Profile*>(profile));
}