// 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. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_GEO_REGION_DATA_LOADER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_GEO_REGION_DATA_LOADER_H_ #include <string> #include <vector> #include "base/functional/callback_forward.h" namespace i18n { namespace addressinput { class RegionData; } // namespace addressinput } // namespace i18n namespace autofill { // An interface to wrap the loading of region data so it can be mocked in tests. class RegionDataLoader { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_GEO_REGION_DATA_LOADER_H_