#include "chrome/browser/k_anonymity_service/k_anonymity_service_factory.h"
#include <cstddef>
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "chrome/browser/k_anonymity_service/k_anonymity_service_client.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_selections.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/common/chrome_features.h"
#include "components/keyed_service/core/keyed_service.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/k_anonymity_service_delegate.h"
#include "k_anonymity_service_client.h"
namespace {
ProfileSelections BuildKAnonymityServiceProfileSelections() { … }
}
KAnonymityServiceFactory* KAnonymityServiceFactory::GetInstance() { … }
content::KAnonymityServiceDelegate* KAnonymityServiceFactory::GetForProfile(
Profile* profile) { … }
KAnonymityServiceFactory::KAnonymityServiceFactory()
: … { … }
KAnonymityServiceFactory::~KAnonymityServiceFactory() = default;
std::unique_ptr<KeyedService>
KAnonymityServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }