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

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

Issue 7920023: Fix crashes related to the extension uninstall dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make Show() pure virtual Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_context_menu_model.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 virtual ~ExtensionContextMenuModel(); 45 virtual ~ExtensionContextMenuModel();
46 46
47 // SimpleMenuModel::Delegate overrides. 47 // SimpleMenuModel::Delegate overrides.
48 virtual bool IsCommandIdChecked(int command_id) const; 48 virtual bool IsCommandIdChecked(int command_id) const;
49 virtual bool IsCommandIdEnabled(int command_id) const; 49 virtual bool IsCommandIdEnabled(int command_id) const;
50 virtual bool GetAcceleratorForCommandId(int command_id, 50 virtual bool GetAcceleratorForCommandId(int command_id,
51 ui::Accelerator* accelerator); 51 ui::Accelerator* accelerator);
52 virtual void ExecuteCommand(int command_id); 52 virtual void ExecuteCommand(int command_id);
53 53
54 // ExtensionUninstallDialog::Delegate: 54 // ExtensionUninstallDialog::Delegate:
55 virtual void ExtensionDialogAccepted(); 55 virtual void ExtensionUninstallAccepted();
56 virtual void ExtensionDialogCanceled(); 56 virtual void ExtensionUninstallCanceled();
57 57
58 private: 58 private:
59 void InitCommonCommands(); 59 void InitCommonCommands();
60 60
61 // Gets the extension we are displaying the menu for. Returns NULL if the 61 // Gets the extension we are displaying the menu for. Returns NULL if the
62 // extension has been uninstalled and no longer exists. 62 // extension has been uninstalled and no longer exists.
63 const Extension* GetExtension() const; 63 const Extension* GetExtension() const;
64 64
65 // A copy of the extension's id. 65 // A copy of the extension's id.
66 std::string extension_id_; 66 std::string extension_id_;
67 67
68 // The extension action we are displaying the menu for (or NULL). 68 // The extension action we are displaying the menu for (or NULL).
69 ExtensionAction* extension_action_; 69 ExtensionAction* extension_action_;
70 70
71 Browser* browser_; 71 Browser* browser_;
72 72
73 Profile* profile_; 73 Profile* profile_;
74 74
75 // The delegate which handles the 'inspect popup' menu command (or NULL). 75 // The delegate which handles the 'inspect popup' menu command (or NULL).
76 PopupDelegate* delegate_; 76 PopupDelegate* delegate_;
77 77
78 // Keeps track of the extension uninstall dialog. 78 // Keeps track of the extension uninstall dialog.
79 scoped_ptr<ExtensionUninstallDialog> extension_uninstall_dialog_; 79 scoped_ptr<ExtensionUninstallDialog> extension_uninstall_dialog_;
80 80
81 DISALLOW_COPY_AND_ASSIGN(ExtensionContextMenuModel); 81 DISALLOW_COPY_AND_ASSIGN(ExtensionContextMenuModel);
82 }; 82 };
83 83
84 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_ 84 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_MODEL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_context_menu_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698