blob: b98a8fc95b0fe228e55617942fa6305137741b23 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SHELF_SHELF_MENU_MODEL_ADAPTER_H_
#define ASH_SHELF_SHELF_MENU_MODEL_ADAPTER_H_
#include "ash/app_menu/app_menu_model_adapter.h"
#include "ash/ash_export.h"
namespace views {
class View;
}
namespace ash {
// A class wrapping menu operations for ShelfView. Responsible for building,
// running, and recording histograms.
class ASH_EXPORT ShelfMenuModelAdapter : public AppMenuModelAdapter {
public:
ShelfMenuModelAdapter(const std::string& app_id,
std::unique_ptr<ui::SimpleMenuModel> model,
views::View* menu_owner,
ui::MenuSourceType source_type,
base::OnceClosure on_menu_closed_callback,
bool is_tablet_mode);
~ShelfMenuModelAdapter() override;
// Overridden from AppMenuModelAdapter:
void RecordHistogramOnMenuClosed() override;
// Whether this is showing a menu for |view|.
bool IsShowingMenuForView(const views::View& view) const;
private:
// The view showing the context menu. Not owned.
views::View* menu_owner_;
DISALLOW_COPY_AND_ASSIGN(ShelfMenuModelAdapter);
};
} // namespace ash
#endif // ASH_SHELF_SHELF_MENU_MODEL_ADAPTER_H_