chromium/chrome/browser/password_manager/password_manager_settings_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/password_manager/password_manager_settings_service_factory.h"

#include "base/trace_event/trace_event.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "components/password_manager/core/browser/password_manager_settings_service.h"
#include "components/password_manager/core/browser/password_manager_settings_service_impl.h"
#include "components/password_manager/core/common/password_manager_features.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/password_manager/android/password_manager_android_util.h"
#include "chrome/browser/password_manager/android/password_manager_settings_service_android_impl.h"
#include "components/password_manager/core/common/password_manager_pref_names.h"
#include "components/prefs/pref_service.h"
#endif

// static
password_manager::PasswordManagerSettingsService*
PasswordManagerSettingsServiceFactory::GetForProfile(Profile* profile) {}

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

PasswordManagerSettingsServiceFactory::PasswordManagerSettingsServiceFactory()
    :{}

PasswordManagerSettingsServiceFactory::
    ~PasswordManagerSettingsServiceFactory() = default;

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