| Index: chrome/browser/ui/ash/app_list/app_list_service_ash.cc
|
| diff --git a/chrome/browser/ui/ash/app_list/app_list_service_ash.cc b/chrome/browser/ui/ash/app_list/app_list_service_ash.cc
|
| index 64ad3fee8b96f539ce71bfd2320e3f15d529e124..430377001838c9545aaa1959e6b54846d85daf08 100644
|
| --- a/chrome/browser/ui/ash/app_list/app_list_service_ash.cc
|
| +++ b/chrome/browser/ui/ash/app_list/app_list_service_ash.cc
|
| @@ -31,7 +31,7 @@ class AppListServiceAsh : public AppListServiceImpl {
|
| virtual void ShowAppList(Profile* default_profile) OVERRIDE;
|
| virtual bool IsAppListVisible() const OVERRIDE;
|
| virtual void DismissAppList() OVERRIDE;
|
| - virtual void EnableAppList() OVERRIDE;
|
| + virtual void EnableAppList(Profile* initial_profile) OVERRIDE;
|
| virtual gfx::NativeWindow GetAppListWindow() OVERRIDE;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppListServiceAsh);
|
| @@ -59,7 +59,7 @@ void AppListServiceAsh::DismissAppList() {
|
| ash::Shell::GetInstance()->ToggleAppList(NULL);
|
| }
|
|
|
| -void AppListServiceAsh::EnableAppList() {}
|
| +void AppListServiceAsh::EnableAppList(Profile* initial_profile) {}
|
|
|
| gfx::NativeWindow AppListServiceAsh::GetAppListWindow() {
|
| if (ash::Shell::HasInstance())
|
|
|