chromium/chrome/browser/k_anonymity_service/k_anonymity_service_factory.cc

// Copyright 2022 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/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() {}

}  // namespace

// static
KAnonymityServiceFactory* KAnonymityServiceFactory::GetInstance() {}

// static
content::KAnonymityServiceDelegate* KAnonymityServiceFactory::GetForProfile(
    Profile* profile) {}

KAnonymityServiceFactory::KAnonymityServiceFactory()
    :{}

KAnonymityServiceFactory::~KAnonymityServiceFactory() = default;

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