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. 

[email protected], [email protected]
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
diff --git a/chrome/browser/ui/browser_mac.cc b/chrome/browser/ui/browser_mac.cc
index cb3b827..d557eac 100644
--- a/chrome/browser/ui/browser_mac.cc
+++ b/chrome/browser/ui/browser_mac.cc
@@ -87,7 +87,7 @@
   Browser* browser =
       new Browser(Browser::CreateParams(profile,
                                         chrome::HOST_DESKTOP_TYPE_NATIVE));
-  ShowExtensions(browser);
+  ShowExtensions(browser, std::string());
   browser->window()->Show();
 }