#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_TESTING_PREF_SERVICE_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_TESTING_PREF_SERVICE_H_
#include "base/memory/scoped_refptr.h"
#include "components/prefs/testing_pref_service.h"
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace autofill::test {
class AutofillTestingPrefService
: public TestingPrefServiceBase<PrefService,
user_prefs::PrefRegistrySyncable> { … };
}
template <>
TestingPrefServiceBase<PrefService, user_prefs::PrefRegistrySyncable>::
TestingPrefServiceBase(
scoped_refptr<TestingPrefStore> managed_prefs,
scoped_refptr<TestingPrefStore> supervised_user_prefs,
scoped_refptr<TestingPrefStore> extension_prefs,
scoped_refptr<TestingPrefStore> standalone_browser_prefs,
scoped_refptr<TestingPrefStore> user_prefs,
scoped_refptr<TestingPrefStore> recommended_prefs,
scoped_refptr<user_prefs::PrefRegistrySyncable> pref_registry,
PrefNotifierImpl* pref_notifier);
#endif