Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2088)

Unified Diff: chrome/browser/extensions/extension_action_context_menu_model.h

Issue 501136: Merge 34812 - Add the rightclick context menu for Browser actions and Page... (Closed) Base URL: svn://chrome-svn/chrome/branches/249/src/
Patch Set: Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_action_context_menu_model.h
===================================================================
--- chrome/browser/extensions/extension_action_context_menu_model.h (revision 0)
+++ chrome/browser/extensions/extension_action_context_menu_model.h (revision 0)
@@ -0,0 +1,40 @@
+// Copyright (c) 2009 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_MODEL_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_MODEL_H_
+
+#include "views/controls/menu/simple_menu_model.h"
+#include "chrome/browser/extensions/extension_install_ui.h"
+
+class Extension;
+
+// The menu model for the context menu for extension action icons (browser and
+// page actions).
+class ExtensionActionContextMenuModel
+ : public views::SimpleMenuModel,
+ public views::SimpleMenuModel::Delegate {
+ public:
+ ExtensionActionContextMenuModel(Extension* extension,
+ ExtensionInstallUI::Delegate* delegate);
+ ~ExtensionActionContextMenuModel();
+
+ // SimpleMenuModel behavior overrides.
+ virtual bool IsCommandIdChecked(int command_id) const;
+ virtual bool IsCommandIdEnabled(int command_id) const;
+ virtual bool GetAcceleratorForCommandId(int command_id,
+ views::Accelerator* accelerator);
+ virtual void ExecuteCommand(int command_id);
+
+ private:
+ // The extension we are displaying the context menu for.
+ Extension* extension_;
+
+ // The delegate that handles the extension Uninstall operation.
+ ExtensionInstallUI::Delegate* delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExtensionActionContextMenuModel);
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_CONTEXT_MENU_MODEL_H_
« no previous file with comments | « chrome/browser/extensions/crx_installer.cc ('k') | chrome/browser/extensions/extension_action_context_menu_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698