Adding instrumentation to locate the source of jankiness
[chromium-blink-merge.git] / chrome / browser / media_galleries / media_gallery_context_menu.h
blob0c87f90ca1498206fd78c417dc2433c0f98c9d8d
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 virtual ~MediaGalleryContextMenu();
22 void set_pref_id(MediaGalleryPrefId pref_id) {
23 pref_id_ = pref_id;
26 // ui::SimpleMenuModel::Delegate overrides:
27 virtual bool IsCommandIdChecked(int command_id) const override;
28 virtual bool IsCommandIdEnabled(int command_id) const override;
29 virtual bool IsCommandIdVisible(int command_id) const override;
30 virtual bool GetAcceleratorForCommandId(
31 int command_id, ui::Accelerator* accelerator) override;
32 virtual 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_