| Index: chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| diff --git a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| index bb71acfd63eec7b069823888d2b9d4777cd382b3..f64add16b3aa22a2ddb01f1a6eacd8f1b084d0d2 100644
|
| --- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| +++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc
|
| @@ -560,7 +560,7 @@ bool CompleteInstallFunction::RunImpl() {
|
| AddRef();
|
|
|
| if (approval_->enable_launcher)
|
| - AppListService::Get()->EnableAppList();
|
| + AppListService::Get()->EnableAppList(profile());
|
|
|
| if (apps::IsAppLauncherEnabled()) {
|
| // Show the app list to show download is progressing. Don't show the app
|
| @@ -616,7 +616,7 @@ EnableAppLauncherFunction::EnableAppLauncherFunction() {}
|
| EnableAppLauncherFunction::~EnableAppLauncherFunction() {}
|
|
|
| bool EnableAppLauncherFunction::RunImpl() {
|
| - AppListService::Get()->EnableAppList();
|
| + AppListService::Get()->EnableAppList(profile());
|
| SendResponse(true);
|
| return true;
|
| }
|
|
|