Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: chrome/browser/ui/ash/app_list/app_list_controller_ash.h

Issue 1861013004: AppListController refactoring part 3: Switching over to use AppListShower in Ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mus_chrome_delegates_ash_impl
Patch Set: Rebase. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698