This source file includes following definitions.
- GetForProfile
- GetInstance
- CustodianProfileDownloaderServiceFactory
- CustodianProfileDownloaderServiceFactory
- BuildServiceInstanceFor
#include "chrome/browser/managed_mode/custodian_profile_downloader_service_factory.h"
#include "chrome/browser/managed_mode/custodian_profile_downloader_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
CustodianProfileDownloaderService*
CustodianProfileDownloaderServiceFactory::GetForProfile(
Profile* profile) {
return static_cast<CustodianProfileDownloaderService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
CustodianProfileDownloaderServiceFactory*
CustodianProfileDownloaderServiceFactory::GetInstance() {
return Singleton<CustodianProfileDownloaderServiceFactory>::get();
}
CustodianProfileDownloaderServiceFactory::
CustodianProfileDownloaderServiceFactory()
: BrowserContextKeyedServiceFactory(
"CustodianProfileDownloaderService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(ProfileOAuth2TokenServiceFactory::GetInstance());
}
CustodianProfileDownloaderServiceFactory::
~CustodianProfileDownloaderServiceFactory() {}
KeyedService* CustodianProfileDownloaderServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new CustodianProfileDownloaderService(static_cast<Profile*>(profile));
}