#ifndef ASH_STYLE_KEYBOARD_SHORTCUT_VIEW_H_
#define ASH_STYLE_KEYBOARD_SHORTCUT_VIEW_H_
#include "ash/ash_export.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/layout/flex_layout_view.h"
namespace ash {
class ASH_EXPORT KeyboardShortcutView : public views::FlexLayoutView {
METADATA_HEADER(KeyboardShortcutView, views::FlexLayoutView)
public:
explicit KeyboardShortcutView(
const std::vector<ui::KeyboardCode>& keyboard_codes);
KeyboardShortcutView(const KeyboardShortcutView&) = delete;
KeyboardShortcutView& operator=(const KeyboardShortcutView&) = delete;
~KeyboardShortcutView() override;
};
}
#endif