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

Side by Side Diff: chrome/browser/extensions/extension_context_menu_model.h

Issue 359493005: Extend contextMenus API to support browser/page actions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor changes and cleanup Created 6 years, 5 months 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/extensions/extension_uninstall_dialog.h" 11 #include "chrome/browser/extensions/extension_uninstall_dialog.h"
12 #include "ui/base/models/simple_menu_model.h" 12 #include "ui/base/models/simple_menu_model.h"
13 13
14 class Browser; 14 class Browser;
15 class ExtensionAction; 15 class ExtensionAction;
16 class Profile; 16 class Profile;
17 17
18 namespace extensions { 18 namespace extensions {
19 class Extension; 19 class Extension;
20 class ContextMenuMatcher;
20 } 21 }
21 22
22 // The context menu model for extension icons. 23 // The context menu model for extension icons.
23 class ExtensionContextMenuModel 24 class ExtensionContextMenuModel
24 : public base::RefCounted<ExtensionContextMenuModel>, 25 : public base::RefCounted<ExtensionContextMenuModel>,
25 public ui::SimpleMenuModel, 26 public ui::SimpleMenuModel,
26 public ui::SimpleMenuModel::Delegate, 27 public ui::SimpleMenuModel::Delegate,
27 public extensions::ExtensionUninstallDialog::Delegate { 28 public extensions::ExtensionUninstallDialog::Delegate {
28 public: 29 public:
29 enum MenuEntries { 30 enum MenuEntries {
30 NAME = 0, 31 NAME = 0,
31 CONFIGURE, 32 CONFIGURE,
32 HIDE, 33 HIDE,
33 UNINSTALL, 34 UNINSTALL,
34 MANAGE, 35 MANAGE,
35 INSPECT_POPUP 36 INSPECT_POPUP
36 }; 37 };
37 38
39 // Type of action the extension icon represents.
Devlin 2014/07/09 20:07:47 Do these actually need to be public?
gpdavis 2014/07/09 22:15:50 They are necessary for MenuItemMatchesExtension, w
Devlin 2014/07/09 22:42:58 Ah, that's right. Let's just leave it as-is for n
gpdavis 2014/07/10 00:22:25 Acknowledged.
40 enum ActionType {
41 NO_ACTION = 0,
42 BROWSER_ACTION,
43 PAGE_ACTION
44 };
45
38 // Delegate to handle showing an ExtensionAction popup. 46 // Delegate to handle showing an ExtensionAction popup.
39 class PopupDelegate { 47 class PopupDelegate {
40 public: 48 public:
41 // Called when the user selects the menu item which requests that the 49 // Called when the user selects the menu item which requests that the
42 // popup be shown and inspected. 50 // popup be shown and inspected.
43 virtual void InspectPopup(ExtensionAction* action) = 0; 51 virtual void InspectPopup(ExtensionAction* action) = 0;
44 52
45 protected: 53 protected:
46 virtual ~PopupDelegate() {} 54 virtual ~PopupDelegate() {}
47 }; 55 };
(...skipping 26 matching lines...) Expand all
74 private: 82 private:
75 friend class base::RefCounted<ExtensionContextMenuModel>; 83 friend class base::RefCounted<ExtensionContextMenuModel>;
76 virtual ~ExtensionContextMenuModel(); 84 virtual ~ExtensionContextMenuModel();
77 85
78 void InitMenu(const extensions::Extension* extension); 86 void InitMenu(const extensions::Extension* extension);
79 87
80 // Gets the extension we are displaying the menu for. Returns NULL if the 88 // Gets the extension we are displaying the menu for. Returns NULL if the
81 // extension has been uninstalled and no longer exists. 89 // extension has been uninstalled and no longer exists.
82 const extensions::Extension* GetExtension() const; 90 const extensions::Extension* GetExtension() const;
83 91
92 // Appends the extension's context menu items.
93 void AppendExtensionItems();
94
95 // Determines whether this context menu was created for a browser action or
96 // a page action.
97 ActionType GetActionType(const extensions::Extension* extension);
Devlin 2014/07/09 20:07:47 Does this still exist?
gpdavis 2014/07/09 22:15:50 No, no it does not. Sorry about all the dead code
98
84 // A copy of the extension's id. 99 // A copy of the extension's id.
85 std::string extension_id_; 100 std::string extension_id_;
86 101
87 // The extension action of the extension we are displaying the menu for (if 102 // The extension action of the extension we are displaying the menu for (if
88 // it has one, otherwise NULL). 103 // it has one, otherwise NULL).
89 ExtensionAction* extension_action_; 104 ExtensionAction* extension_action_;
90 105
91 Browser* browser_; 106 Browser* browser_;
92 107
93 Profile* profile_; 108 Profile* profile_;
94 109
95 // The delegate which handles the 'inspect popup' menu command (or NULL). 110 // The delegate which handles the 'inspect popup' menu command (or NULL).
96 PopupDelegate* delegate_; 111 PopupDelegate* delegate_;
97 112
113 // The type of extension action to which this context menu is attached.
114 ActionType action_type_;
115
98 // Keeps track of the extension uninstall dialog. 116 // Keeps track of the extension uninstall dialog.
99 scoped_ptr<extensions::ExtensionUninstallDialog> extension_uninstall_dialog_; 117 scoped_ptr<extensions::ExtensionUninstallDialog> extension_uninstall_dialog_;
100 118
119 // Menu matcher for context menu items specified by the extension.
120 scoped_ptr<extensions::ContextMenuMatcher> extension_items_;
121
101 DISALLOW_COPY_AND_ASSIGN(ExtensionContextMenuModel); 122 DISALLOW_COPY_AND_ASSIGN(ExtensionContextMenuModel);
102 }; 123 };
103 124
104 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_ 125 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698