// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_ADDRESS_DATA_MANAGER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_ADDRESS_DATA_MANAGER_H_ #include <memory> #include "components/autofill/core/browser/address_data_manager.h" #include "components/autofill/core/browser/country_type.h" #include "components/autofill/core/browser/strike_databases/test_inmemory_strike_database.h" namespace autofill { // An AddressDataManager that doesn't communicate with a database and is thus // fully synchronous. class TestAddressDataManager : public AddressDataManager { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_ADDRESS_DATA_MANAGER_H_