This source file includes following definitions.
- GetForProfile
- GetInstance
- BuildServiceInstanceFor
#include "chrome/browser/managed_mode/managed_user_sync_service_factory.h"
#include "chrome/browser/managed_mode/managed_user_sync_service.h"
#include "chrome/browser/profiles/profile.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
ManagedUserSyncService* ManagedUserSyncServiceFactory::GetForProfile(
Profile* profile) {
return static_cast<ManagedUserSyncService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
ManagedUserSyncServiceFactory* ManagedUserSyncServiceFactory::GetInstance() {
return Singleton<ManagedUserSyncServiceFactory>::get();
}
ManagedUserSyncServiceFactory::ManagedUserSyncServiceFactory()
: BrowserContextKeyedServiceFactory(
"ManagedUserSyncService",
BrowserContextDependencyManager::GetInstance()) {
}
ManagedUserSyncServiceFactory::~ManagedUserSyncServiceFactory() {}
KeyedService* ManagedUserSyncServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new ManagedUserSyncService(static_cast<Profile*>(profile)->GetPrefs());
}