chromium/chrome/browser/password_manager/profile_password_store_factory.h

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

#ifndef CHROME_BROWSER_PASSWORD_MANAGER_PROFILE_PASSWORD_STORE_FACTORY_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_PROFILE_PASSWORD_STORE_FACTORY_H_

#include "base/no_destructor.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/refcounted_profile_keyed_service_factory.h"
#include "components/keyed_service/core/service_access_type.h"
#include "components/password_manager/core/browser/password_store/password_store_interface.h"

class Profile;

// Singleton that owns all PasswordStores and associates them with
// Profiles.
class ProfilePasswordStoreFactory
    : public RefcountedProfileKeyedServiceFactory {};

#endif  // CHROME_BROWSER_PASSWORD_MANAGER_PROFILE_PASSWORD_STORE_FACTORY_H_