blob: 2d521416a90bf182889ea4e5e4adefca55c8830c [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/sync/profile_sync_service_factory.h"
#include "chrome/browser/unified_consent/chrome_unified_consent_service_client.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/common/safe_browsing_prefs.h"
#include "components/unified_consent/feature.h"
#include "components/unified_consent/unified_consent_metrics.h"
#include "components/unified_consent/unified_consent_service.h"
using unified_consent::UnifiedConsentService;
using unified_consent::metrics::RecordSettingsHistogram;
UnifiedConsentServiceFactory::UnifiedConsentServiceFactory()
: BrowserContextKeyedServiceFactory(
"UnifiedConsentService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(IdentityManagerFactory::GetInstance());
DependsOn(ProfileSyncServiceFactory::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);
PrefService* pref_service = profile->GetPrefs();
auto service_client =
std::make_unique<ChromeUnifiedConsentServiceClient>(pref_service);
// Record settings for pre- and post-UnifiedConsent users.
RecordSettingsHistogram(service_client.get(), pref_service);
syncer::SyncService* sync_service =
ProfileSyncServiceFactory::GetSyncServiceForProfile(profile);
if (!sync_service)
return nullptr;
if (!unified_consent::IsUnifiedConsentFeatureEnabled()) {
UnifiedConsentService::RollbackIfNeeded(pref_service, sync_service,
service_client.get());
return nullptr;
}
return new UnifiedConsentService(
std::move(service_client), pref_service,
IdentityManagerFactory::GetForProfile(profile), sync_service);
}
bool UnifiedConsentServiceFactory::ServiceIsNULLWhileTesting() const {
return false;
}
bool UnifiedConsentServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return false;
}