// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_MENU_MODEL_H_ #define UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_MENU_MODEL_H_ #include "base/i18n/rtl.h" #include "base/memory/weak_ptr.h" #include "ui/base/models/combobox_model.h" #include "ui/base/models/image_model.h" #include "ui/base/models/menu_model.h" #include "ui/views/controls/combobox/combobox.h" #include "ui/views/controls/menu/menu_config.h" // Adapts a ui::ComboboxModel to a ui::MenuModel. class VIEWS_EXPORT ComboboxMenuModel final : public ui::MenuModel { … }; #endif // UI_VIEWS_CONTROLS_COMBOBOX_COMBOBOX_MENU_MODEL_H_