| Index: chrome/browser/extensions/extension_install_ui_default.cc
|
| diff --git a/chrome/browser/extensions/extension_install_ui_default.cc b/chrome/browser/extensions/extension_install_ui_default.cc
|
| index d2ff0e4674b5f1cfa58e832ee581c4d2739c038b..123d7ce9e927edee7a839cf7c65866b829fde735 100644
|
| --- a/chrome/browser/extensions/extension_install_ui_default.cc
|
| +++ b/chrome/browser/extensions/extension_install_ui_default.cc
|
| @@ -110,7 +110,7 @@ void OnAppLauncherEnabledCompleted(const extensions::Extension* extension,
|
| bool use_launcher) {
|
| #if defined(ENABLE_APP_LIST)
|
| if (use_launcher) {
|
| - chrome::ShowAppList();
|
| + chrome::ShowAppList(browser->profile());
|
|
|
| content::NotificationService::current()->Notify(
|
| chrome::NOTIFICATION_APP_INSTALLED_TO_APPLIST,
|
| @@ -228,8 +228,8 @@ ExtensionInstallUI* ExtensionInstallUI::Create(Profile* profile) {
|
| // static
|
| void ExtensionInstallUI::OpenAppInstalledUI(Browser* browser,
|
| const std::string& app_id) {
|
| -#if defined(OS_CHROMEOS)
|
| - chrome::ShowAppList();
|
| +#if defined(ENABLE_APP_LIST)
|
| + chrome::ShowAppList(browser->profile());
|
|
|
| content::NotificationService::current()->Notify(
|
| chrome::NOTIFICATION_APP_INSTALLED_TO_APPLIST,
|
|
|