diff options
author | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-28 04:05:08 +0000 |
---|---|---|
committer | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-28 04:05:08 +0000 |
commit | bc9833c3cc8a3ed4090da16270de39722a6be2b4 (patch) | |
tree | 6ba25e8a748cba3fa72fbe16306b8d8746e6ee06 /chrome/browser/extensions/extension_error_ui_default.cc | |
parent | 97ff8b508812e58e7071579511ab04ca21d577be (diff) | |
download | chromium_src-bc9833c3cc8a3ed4090da16270de39722a6be2b4.zip chromium_src-bc9833c3cc8a3ed4090da16270de39722a6be2b4.tar.gz chromium_src-bc9833c3cc8a3ed4090da16270de39722a6be2b4.tar.bz2 |
The context menu for extension actions should show a Manage item, not just
"Manage Extensions...". This wasn't implemented back when the menu was
implemented because the ability to go to the manage page and highlight an
extension wasn't there. Now it is.
TBR=sky@chromium.org, thakis@chromium.org
BUG=173892
TEST=Right click a browser action (with at least a few extensions installed)
and select Manage. That should take you to the Extensions page with the right
extension scrolled to and highlighted.
Original patch by finnur: https://codereview.chromium.org/12224028/
Review URL: https://chromiumcodereview.appspot.com/12377003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185147 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_error_ui_default.cc')
-rw-r--r-- | chrome/browser/extensions/extension_error_ui_default.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_error_ui_default.cc b/chrome/browser/extensions/extension_error_ui_default.cc index 905ebeb..476184c 100644 --- a/chrome/browser/extensions/extension_error_ui_default.cc +++ b/chrome/browser/extensions/extension_error_ui_default.cc @@ -36,7 +36,7 @@ bool ExtensionErrorUIDefault::ShowErrorInBubbleView() { void ExtensionErrorUIDefault::ShowExtensions() { DCHECK(browser_); - chrome::ShowExtensions(browser_); + chrome::ShowExtensions(browser_, std::string()); } ExtensionErrorUIDefault::ExtensionGlobalError::ExtensionGlobalError( |