#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_OPTIMIZATION_GUIDE_DECIDER_FACTORY_H_
#define CHROME_BROWSER_AUTOFILL_AUTOFILL_OPTIMIZATION_GUIDE_DECIDER_FACTORY_H_
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
namespace base {
template <typename T>
class NoDestructor;
}
class KeyedService;
class Profile;
namespace autofill {
class AutofillOptimizationGuideDecider;
class AutofillOptimizationGuideDeciderFactory
: public ProfileKeyedServiceFactory {
public:
static AutofillOptimizationGuideDecider* GetForProfile(Profile* profile);
static AutofillOptimizationGuideDeciderFactory* GetInstance();
private:
friend base::NoDestructor<AutofillOptimizationGuideDeciderFactory>;
AutofillOptimizationGuideDeciderFactory();
~AutofillOptimizationGuideDeciderFactory() override;
std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(
content::BrowserContext* profile) const override;
};
}
#endif