| Index: chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| diff --git a/chrome/browser/ui/ash/app_list/app_list_controller_ash.h b/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| index b426da4cbc95ab72d2a537adb3f289c17456e538..4eff5f26e3e705e07b2d60f0501eb06b2252af74 100644
|
| --- a/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| +++ b/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| @@ -10,9 +10,13 @@
|
| #include "chrome/browser/ui/app_list/app_list_controller_delegate.h"
|
| #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h"
|
|
|
| +namespace app_list {
|
| +class AppListShowerImpl;
|
| +}
|
| +
|
| class AppListControllerDelegateAsh : public AppListControllerDelegate {
|
| public:
|
| - AppListControllerDelegateAsh();
|
| + explicit AppListControllerDelegateAsh(app_list::AppListShowerImpl*);
|
| ~AppListControllerDelegateAsh() override;
|
|
|
| private:
|
| @@ -48,6 +52,9 @@ class AppListControllerDelegateAsh : public AppListControllerDelegate {
|
|
|
| ash::LaunchSource AppListSourceToLaunchSource(AppListSource source);
|
|
|
| + // Not owned.
|
| + app_list::AppListShowerImpl* app_list_shower_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAsh);
|
| };
|
|
|
|
|