| Index: chrome/browser/browser.cc
|
| diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc
|
| index 40d10729c1d73a00fc88950453ce0e7c47f9fc90..344a6608f4718029bc0bc3133bcabbcf9465c876 100644
|
| --- a/chrome/browser/browser.cc
|
| +++ b/chrome/browser/browser.cc
|
| @@ -406,19 +406,20 @@ void Browser::OpenDownloadsWindow(Profile* profile) {
|
| }
|
|
|
| // static
|
| -void Browser::OpenExtensionsWindow(Profile* profile) {
|
| +void Browser::OpenHelpWindow(Profile* profile) {
|
| Browser* browser = Browser::Create(profile);
|
| - browser->ShowExtensionsTab();
|
| + browser->OpenHelpTab();
|
| browser->window()->Show();
|
| }
|
| +#endif
|
|
|
| // static
|
| -void Browser::OpenHelpWindow(Profile* profile) {
|
| +void Browser::OpenExtensionsWindow(Profile* profile) {
|
| Browser* browser = Browser::Create(profile);
|
| - browser->OpenHelpTab();
|
| + browser->ShowExtensionsTab();
|
| browser->window()->Show();
|
| }
|
| -#endif
|
| +
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
| // Browser, State Storage and Retrieval for UI:
|
|
|