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

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

Issue 1770993002: wip: Refactoring Ash's AppListController, moving the bulk of the logic to chrome/browser/ui/ash/app… Base URL: https://chromium.googlesource.com/chromium/src.git@small_5_apps
Patch Set: Added a comment for PostTask in AppListServiceAsh. Created 4 years, 9 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..6e4cdd9655df7d7c6cc2e65ed81eb4f9b9525ce8 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,11 @@
#include "chrome/browser/ui/app_list/app_list_controller_delegate.h"
#include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h"
+class AppListShowerAsh;
+
class AppListControllerDelegateAsh : public AppListControllerDelegate {
public:
- AppListControllerDelegateAsh();
+ explicit AppListControllerDelegateAsh(AppListShowerAsh* app_list_shower);
~AppListControllerDelegateAsh() override;
private:
@@ -48,6 +50,9 @@ class AppListControllerDelegateAsh : public AppListControllerDelegate {
ash::LaunchSource AppListSourceToLaunchSource(AppListSource source);
+ // Not owned.
+ AppListShowerAsh* app_list_shower_;
+
DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAsh);
};

Powered by Google App Engine
This is Rietveld 408576698