QUIC - cleanup changes to sync chromium tree with internal source.
[chromium-blink-merge.git] / chrome / browser / media_galleries / media_gallery_context_menu.h
blob05fcf994e0efd43ad08da1409b79514dec497639
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 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERY_CONTEXT_MENU_H_
6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERY_CONTEXT_MENU_H_
8 #include "base/basictypes.h"
9 #include "base/callback.h"
10 #include "chrome/browser/media_galleries/media_galleries_preferences.h"
11 #include "ui/base/models/simple_menu_model.h"
13 class MediaGalleryContextMenu : public ui::SimpleMenuModel,
14 public ui::SimpleMenuModel::Delegate {
15 public:
16 typedef base::Callback<void(MediaGalleryPrefId pref_id)>
17 ForgetGalleryCallback;
19 explicit MediaGalleryContextMenu(const ForgetGalleryCallback& callback);
20 ~MediaGalleryContextMenu() override;
22 void set_pref_id(MediaGalleryPrefId pref_id) {
23 pref_id_ = pref_id;
26 // ui::SimpleMenuModel::Delegate overrides:
27 bool IsCommandIdChecked(int command_id) const override;
28 bool IsCommandIdEnabled(int command_id) const override;
29 bool IsCommandIdVisible(int command_id) const override;
30 bool GetAcceleratorForCommandId(int command_id,
31 ui::Accelerator* accelerator) override;
32 void ExecuteCommand(int command_id, int event_flags) override;
34 private:
35 MediaGalleryPrefId pref_id_;
36 ForgetGalleryCallback callback_;
38 DISALLOW_COPY_AND_ASSIGN(MediaGalleryContextMenu);
41 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERY_CONTEXT_MENU_H_