// Copyright 2019 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_VIEWS_STATUS_ICONS_CONCAT_MENU_MODEL_H_ #define CHROME_BROWSER_UI_VIEWS_STATUS_ICONS_CONCAT_MENU_MODEL_H_ #include <utility> #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "ui/base/models/image_model.h" #include "ui/base/models/menu_model.h" // Combines two menu models (without using submenus). class ConcatMenuModel final : public ui::MenuModel { … }; #endif // CHROME_BROWSER_UI_VIEWS_STATUS_ICONS_CONCAT_MENU_MODEL_H_