chromium/chrome/browser/privacy_sandbox/privacy_sandbox_service_factory.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/privacy_sandbox/privacy_sandbox_service_factory.h"

#include "base/no_destructor.h"
#include "chrome/browser/browsing_topics/browsing_topics_service_factory.h"
#include "chrome/browser/content_settings/cookie_settings_factory.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/first_party_sets/first_party_sets_policy_service_factory.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_service_impl.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.h"
#include "chrome/browser/tpcd/experiment/eligibility_service_factory.h"
#include "components/content_settings/core/browser/cookie_settings.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/profile_metrics/browser_profile_type.h"
#include "content/public/browser/storage_partition.h"

#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/ui/hats/trust_safety_sentiment_service_factory.h"
#endif

#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "chromeos/ash/components/browser_context_helper/browser_context_types.h"
#endif

namespace {

profile_metrics::BrowserProfileType GetProfileType(Profile* profile) {}

}  // namespace

PrivacySandboxServiceFactory* PrivacySandboxServiceFactory::GetInstance() {}

PrivacySandboxService* PrivacySandboxServiceFactory::GetForProfile(
    Profile* profile) {}

// LINT.IfChange(PrivacySandboxService)
PrivacySandboxServiceFactory::PrivacySandboxServiceFactory()
    :{}
// LINT.ThenChange(/chrome/browser/privacy_sandbox/privacy_sandbox_notice_service_factory.cc:PrivacySandboxNoticeService)

std::unique_ptr<KeyedService>
PrivacySandboxServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}