[Media Router] Add integration tests and e2e tests for media router and presentation...
[chromium-blink-merge.git] / chrome / browser / media_galleries / media_gallery_context_menu.cc
blob1e637a1a6005106a09e07ace302ca029478119cf
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/media_galleries/media_gallery_context_menu.h"
6 #include "chrome/grit/generated_resources.h"
7 #include "ui/base/l10n/l10n_util.h"
8 #include "ui/base/models/menu_model.h"
10 MediaGalleryContextMenu::MediaGalleryContextMenu(
11 const ForgetGalleryCallback& callback)
12 : ui::SimpleMenuModel(NULL),
13 callback_(callback) {
14 set_delegate(this);
15 AddItem(1, l10n_util::GetStringUTF16(IDS_MEDIA_GALLERIES_DIALOG_DELETE));
18 MediaGalleryContextMenu::~MediaGalleryContextMenu() {}
20 bool MediaGalleryContextMenu::IsCommandIdChecked(int command_id) const {
21 return false;
24 bool MediaGalleryContextMenu::IsCommandIdEnabled(int command_id) const {
25 return true;
28 bool MediaGalleryContextMenu::IsCommandIdVisible(int command_id) const {
29 return true;
32 bool MediaGalleryContextMenu::GetAcceleratorForCommandId(
33 int command_id, ui::Accelerator* accelerator) {
34 return false;
37 void MediaGalleryContextMenu::ExecuteCommand(int command_id, int event_flags) {
38 callback_.Run(pref_id_);