// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_AUTOFILL_DIALOG_MODELS_H_ #define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_AUTOFILL_DIALOG_MODELS_H_ #include <string> #include "ui/base/models/combobox_model.h" #include "ui/base/models/simple_combobox_model.h" namespace autofill { // A model for possible months in the Gregorian calendar. class MonthComboboxModel : public ui::ComboboxModel { … }; // A model for years between now and a decade hence. class YearComboboxModel : public ui::SimpleComboboxModel { … }; } // namespace autofill #endif // CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_AUTOFILL_DIALOG_MODELS_H_