#include "components/autofill/core/browser/geo/test_region_data_loader.h"
#include "third_party/libaddressinput/src/cpp/include/libaddressinput/region_data.h"
namespace autofill {
TestRegionDataLoader::TestRegionDataLoader() = default;
TestRegionDataLoader::~TestRegionDataLoader() = default;
void TestRegionDataLoader::LoadRegionData(
const std::string& country_code,
RegionDataLoader::RegionDataLoaded callback) { … }
void TestRegionDataLoader::ClearCallback() { … }
void TestRegionDataLoader::SendAsynchronousData(
const std::vector<std::pair<std::string, std::string>>& regions) { … }
void TestRegionDataLoader::SendRegionData(
const std::vector<std::pair<std::string, std::string>>& regions,
RegionDataLoader::RegionDataLoaded callback) { … }
}