blob: ce2284c65b1ff4d49e4120a64b822d17a4695826 [file] [log] [blame]
// Copyright 2018 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/unified_consent/unified_consent_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/browser/signin/unified_consent_helper.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/unified_consent/unified_consent_service.h"
UnifiedConsentServiceFactory::UnifiedConsentServiceFactory()
: BrowserContextKeyedServiceFactory(
"UnifiedConsentService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(IdentityManagerFactory::GetInstance());
}
UnifiedConsentServiceFactory::~UnifiedConsentServiceFactory() = default;
// static
UnifiedConsentService* UnifiedConsentServiceFactory::GetForProfile(
Profile* profile) {
return static_cast<UnifiedConsentService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
UnifiedConsentServiceFactory* UnifiedConsentServiceFactory::GetInstance() {
return base::Singleton<UnifiedConsentServiceFactory>::get();
}
void UnifiedConsentServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
UnifiedConsentService::RegisterPrefs(registry);
}
KeyedService* UnifiedConsentServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
Profile* profile = Profile::FromBrowserContext(context);
if (!IsUnifiedConsentEnabled(profile))
return nullptr;
return new UnifiedConsentService(
profile->GetPrefs(), IdentityManagerFactory::GetForProfile(profile));
}
bool UnifiedConsentServiceFactory::ServiceIsNULLWhileTesting() const {
return false;
}
bool UnifiedConsentServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}