| Index: chrome/browser/ui/ash/app_list/app_list_controller_ash.cc
|
| diff --git a/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc b/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc
|
| index 1245ad6f7958f3b3228bd2c2adbfe72b50a8edbd..f2a01989a444aafccc6deb78ccd5d14c4c4e89bd 100644
|
| --- a/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc
|
| +++ b/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc
|
| @@ -9,6 +9,7 @@
|
| #include "ash/shell.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h"
|
| +#include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_util.h"
|
| #include "chrome/browser/ui/browser_commands.h"
|
| #include "chrome/browser/ui/browser_navigator.h"
|
| #include "chrome/browser/ui/browser_navigator_params.h"
|
| @@ -57,7 +58,8 @@ void AppListControllerDelegateAsh::UnpinApp(const std::string& app_id) {
|
|
|
| AppListControllerDelegate::Pinnable AppListControllerDelegateAsh::GetPinnable(
|
| const std::string& app_id) {
|
| - return ChromeLauncherController::instance()->GetPinnable(app_id);
|
| + return chrome::util::GetPinnable(
|
| + ChromeLauncherController::instance()->GetProfile(), app_id);
|
| }
|
|
|
| void AppListControllerDelegateAsh::OnShowChildDialog() {
|
|
|