| Index: chrome/browser/extensions/extension_context_menu_model.h
|
| diff --git a/chrome/browser/extensions/extension_context_menu_model.h b/chrome/browser/extensions/extension_context_menu_model.h
|
| index 0d9e833dabff06101597bcc03c2c2464e6e0d0ba..9144a5f379fb87f9227285a004ad8fc24aa0ca0f 100644
|
| --- a/chrome/browser/extensions/extension_context_menu_model.h
|
| +++ b/chrome/browser/extensions/extension_context_menu_model.h
|
| @@ -26,7 +26,6 @@ class ExtensionContextMenuModel
|
| public:
|
| // Creates a menu model for the given extension action.
|
| ExtensionContextMenuModel(const Extension* extension, Browser* browser);
|
| - virtual ~ExtensionContextMenuModel();
|
|
|
| // SimpleMenuModel::Delegate overrides.
|
| virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
|
| @@ -41,6 +40,9 @@ class ExtensionContextMenuModel
|
| virtual void ExtensionUninstallCanceled() OVERRIDE;
|
|
|
| private:
|
| + friend class base::RefCounted<ExtensionContextMenuModel>;
|
| + virtual ~ExtensionContextMenuModel();
|
| +
|
| void InitCommonCommands();
|
|
|
| // Gets the extension we are displaying the menu for. Returns NULL if the
|
|
|