blob: 282de107658f9f8dfe3f9b70d0a2dcccadc85f71 [file] [log] [blame]
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_AUTOFILL_IBAN_MANAGER_FACTORY_H_
#define CHROME_BROWSER_AUTOFILL_IBAN_MANAGER_FACTORY_H_
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
namespace base {
template <typename T>
struct DefaultSingletonTraits;
}
class Profile;
namespace autofill {
class IBANManager;
// Singleton that owns all IBANManagers and associates them with Profiles.
class IBANManagerFactory : public BrowserContextKeyedServiceFactory {
public:
// Returns the IBANManager for |profile|, creating it if it is not yet
// created.
static IBANManager* GetForProfile(Profile* profile);
static IBANManagerFactory* GetInstance();
private:
friend struct base::DefaultSingletonTraits<IBANManagerFactory>;
IBANManagerFactory();
~IBANManagerFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const override;
content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const override;
};
} // namespace autofill
#endif // CHROME_BROWSER_AUTOFILL_IBAN_MANAGER_FACTORY_H_