// 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_UI_REGION_COMBOBOX_MODEL_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_REGION_COMBOBOX_MODEL_H_ #include <memory> #include <string> #include <utility> #include <vector> #include "base/memory/raw_ptr.h" #include "base/observer_list.h" #include "ui/base/models/combobox_model.h" namespace i18n { namespace addressinput { class RegionData; } // namespace addressinput } // namespace i18n namespace autofill { class RegionDataLoader; // A model for country regions (aka state/provinces) to be used to enter // addresses. Note that loading these regions can happen asynchronously so a // ui::ComboboxModelObserver should be attached to this model to be updated when // the regions load is completed. class RegionComboboxModel : public ui::ComboboxModel { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_REGION_COMBOBOX_MODEL_H_