| 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 e12f3306b9fb09decf7b9e8ee123c85ffa2229da..716ec4e8d3cbcc8cddd90a7fa90ada1f1e24e109 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;
|
| }
|
|
|