#include "chrome/browser/first_party_sets/first_party_sets_policy_service_factory.h"
#include "base/no_destructor.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/first_party_sets/first_party_sets_policy_service.h"
#include "chrome/browser/first_party_sets/first_party_sets_pref_names.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_settings_factory.h"
#include "chrome/browser/privacy_sandbox/tracking_protection_settings_factory.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "chrome/browser/profiles/profile_selections.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_context.h"
namespace first_party_sets {
namespace {
FirstPartySetsPolicyServiceFactory::GlobalTestingFactory* GetTestingFactory() { … }
}
FirstPartySetsPolicyService*
FirstPartySetsPolicyServiceFactory::GetForBrowserContext(
content::BrowserContext* context) { … }
FirstPartySetsPolicyServiceFactory*
FirstPartySetsPolicyServiceFactory::GetInstance() { … }
void FirstPartySetsPolicyServiceFactory::SetTestingFactoryForTesting(
GlobalTestingFactory test_factory) { … }
FirstPartySetsPolicyServiceFactory::FirstPartySetsPolicyServiceFactory()
: … { … }
FirstPartySetsPolicyServiceFactory::~FirstPartySetsPolicyServiceFactory() =
default;
std::unique_ptr<KeyedService>
FirstPartySetsPolicyServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
bool FirstPartySetsPolicyServiceFactory::ServiceIsCreatedWithBrowserContext()
const { … }
void FirstPartySetsPolicyServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) { … }
}