| 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 f81978247d1fefd8e287e960472727558e5b3894..9bd5170013597acfa2d64dbb7a30a691af75cd41 100644
|
| --- a/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| +++ b/chrome/browser/ui/app_list/app_list_service_mac.mm
|
| @@ -146,6 +146,8 @@ class AppListControllerDelegateCocoa : public AppListControllerDelegate {
|
| virtual void LaunchApp(Profile* profile,
|
| const extensions::Extension* extension,
|
| int event_flags) OVERRIDE;
|
| + virtual void ShowForProfileByPath(
|
| + const base::FilePath& profile_path) OVERRIDE;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateCocoa);
|
| };
|
| @@ -317,6 +319,11 @@ void AppListControllerDelegateCocoa::LaunchApp(
|
| profile, extension, NEW_FOREGROUND_TAB));
|
| }
|
|
|
| +void AppListControllerDelegateCocoa::ShowForProfileByPath(
|
| + const base::FilePath& profile_path) {
|
| + // TODO(tapted): Implement this for Mac.
|
| +}
|
| +
|
| AppListServiceMac::AppListServiceMac() {
|
| animation_controller_.reset([[AppListAnimationController alloc] init]);
|
| }
|
|
|