// 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_ADDRESS_COMBOBOX_MODEL_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_ADDRESS_COMBOBOX_MODEL_H_ #include <memory> #include <string> #include <utility> #include <vector> #include "base/observer_list.h" #include "ui/base/models/combobox_model.h" namespace autofill { class AutofillProfile; class PersonalDataManager; // A combobox model for listing addresses by a generated user visible string and // have a unique id to identify the one selected by the user. class AddressComboboxModel : public ui::ComboboxModel { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_ADDRESS_COMBOBOX_MODEL_H_