chromium/ios/chrome/browser/passwords/model/ios_chrome_password_receiver_service_factory.h

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

#ifndef IOS_CHROME_BROWSER_PASSWORDS_MODEL_IOS_CHROME_PASSWORD_RECEIVER_SERVICE_FACTORY_H_
#define IOS_CHROME_BROWSER_PASSWORDS_MODEL_IOS_CHROME_PASSWORD_RECEIVER_SERVICE_FACTORY_H_

#import "base/no_destructor.h"
#import "components/keyed_service/ios/browser_state_keyed_service_factory.h"
#import "ios/chrome/browser/shared/model/profile/profile_ios_forward.h"

namespace password_manager {
class PasswordReceiverService;
}

// Creates instances of PasswordReceiverService per BrowserState.
class IOSChromePasswordReceiverServiceFactory
    : public BrowserStateKeyedServiceFactory {
 public:
  static IOSChromePasswordReceiverServiceFactory* GetInstance();
  static password_manager::PasswordReceiverService* GetForBrowserState(
      ChromeBrowserState* browser_state);

 private:
  friend class base::NoDestructor<IOSChromePasswordReceiverServiceFactory>;

  IOSChromePasswordReceiverServiceFactory();
  ~IOSChromePasswordReceiverServiceFactory() override;

  std::unique_ptr<KeyedService> BuildServiceInstanceFor(
      web::BrowserState* context) const override;
};

#endif  // IOS_CHROME_BROWSER_PASSWORDS_MODEL_IOS_CHROME_PASSWORD_RECEIVER_SERVICE_FACTORY_H_