chromium/components/autofill/core/browser/geo/test_region_data_loader.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace autofill