chromium/chrome/browser/ai/ai_manager_keyed_service_factory.cc

// Copyright 2024 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/ai/ai_manager_keyed_service_factory.h"

#include <memory>

#include "base/no_destructor.h"
#include "build/build_config.h"
#include "chrome/browser/ai/ai_manager_keyed_service.h"
#include "chrome/browser/optimization_guide/optimization_guide_keyed_service.h"
#include "chrome/browser/optimization_guide/optimization_guide_keyed_service_factory.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/optimization_guide/core/optimization_guide_features.h"
#include "content/public/browser/browser_context.h"

// static
AIManagerKeyedService* AIManagerKeyedServiceFactory::GetAIManagerKeyedService(
    content::BrowserContext* browser_context) {}

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

AIManagerKeyedServiceFactory::AIManagerKeyedServiceFactory()
    :{}

AIManagerKeyedServiceFactory::~AIManagerKeyedServiceFactory() = default;

bool AIManagerKeyedServiceFactory::ServiceIsCreatedWithBrowserContext() const {}

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