| Index: chrome/browser/ui/app_list/app_list_service_mac.mm
|
| diff --git a/chrome/browser/ui/app_list/app_list_service_mac.mm b/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| index d46f66374b51ac962e6554be4d8c3d4b8bf15fdf..7ca84f4f307ce207584614d0f049b808be8e9530 100644
|
| --- a/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| +++ b/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| @@ -63,7 +63,7 @@ class AppListServiceMac : public AppListServiceImpl,
|
| virtual void ShowAppList(Profile* requested_profile) OVERRIDE;
|
| virtual void DismissAppList() OVERRIDE;
|
| virtual bool IsAppListVisible() const OVERRIDE;
|
| - virtual void EnableAppList() OVERRIDE;
|
| + virtual void EnableAppList(Profile* initial_profile) OVERRIDE;
|
| virtual gfx::NativeWindow GetAppListWindow() OVERRIDE;
|
|
|
| // AppListServiceImpl override:
|
| @@ -320,7 +320,7 @@ bool AppListServiceMac::IsAppListVisible() const {
|
| return [[window_controller_ window] isVisible];
|
| }
|
|
|
| -void AppListServiceMac::EnableAppList() {
|
| +void AppListServiceMac::EnableAppList(Profile* initial_profile) {
|
| // TODO(tapted): Implement enable logic here for OSX.
|
| }
|
|
|
|
|