#include "components/autofill/core/browser/test_address_data_manager.h"
#include "components/autofill/core/browser/address_data_manager.h"
#include <memory>
#include <vector>
namespace autofill {
TestAddressDataManager::TestAddressDataManager(
const std::string& app_locale)
: … { … }
TestAddressDataManager::~TestAddressDataManager() = default;
void TestAddressDataManager::AddProfile(const AutofillProfile& profile) { … }
void TestAddressDataManager::UpdateProfile(const AutofillProfile& profile) { … }
void TestAddressDataManager::RemoveProfile(const std::string& guid) { … }
void TestAddressDataManager::LoadProfiles() { … }
void TestAddressDataManager::RecordUseOf(const AutofillProfile& profile) { … }
AddressCountryCode TestAddressDataManager::GetDefaultCountryCodeForNewAddress()
const { … }
bool TestAddressDataManager::IsAutofillProfileEnabled() const { … }
bool TestAddressDataManager::IsEligibleForAddressAccountStorage() const { … }
void TestAddressDataManager::ClearProfiles() { … }
}