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

Unified Diff: chrome/browser/ui/ash/app_list/app_list_service_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: AppListShower to new component: //ui/app_list/shower, GetViewDelegate() in GetViewDelegate(), test … 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_service_ash.h
diff --git a/chrome/browser/ui/ash/app_list/app_list_service_ash.h b/chrome/browser/ui/ash/app_list/app_list_service_ash.h
index ba2bcbbf3e6e24b9106165abcf1a4610d439c20a..f2da9c3c28f11628dadbba8e00bd21b364e0f4a5 100644
--- a/chrome/browser/ui/ash/app_list/app_list_service_ash.h
+++ b/chrome/browser/ui/ash/app_list/app_list_service_ash.h
@@ -10,18 +10,26 @@
#include "chrome/browser/ui/app_list/app_list_service_impl.h"
#include "ui/app_list/app_list_model.h"
-class AppListControllerDelegateAsh;
+namespace app_list {
+class AppListShower;
+class AppListShowerImpl;
+class AppListShowerDelegateFactory;
+}
namespace base {
template <typename T> struct DefaultSingletonTraits;
}
+class AppListControllerDelegateAsh;
+
// AppListServiceAsh wraps functionality in ChromeLauncherController and the Ash
// Shell for showing and hiding the app list on the Ash desktop.
class AppListServiceAsh : public AppListServiceImpl {
public:
static AppListServiceAsh* GetInstance();
+ app_list::AppListShower* GetAppListShower();
+
// AppListService overrides:
void Init(Profile* initial_profile) override;
@@ -33,6 +41,7 @@ class AppListServiceAsh : public AppListServiceImpl {
private:
friend struct base::DefaultSingletonTraits<AppListServiceAsh>;
+ friend class AppListServiceAshTestApi;
AppListServiceAsh();
~AppListServiceAsh() override;
@@ -61,6 +70,8 @@ class AppListServiceAsh : public AppListServiceImpl {
void CreateForProfile(Profile* default_profile) override;
void DestroyAppList() override;
+ scoped_ptr<app_list::AppListShowerDelegateFactory> shower_delegate_factory_;
+ scoped_ptr<app_list::AppListShowerImpl> app_list_shower_;
scoped_ptr<AppListControllerDelegateAsh> controller_delegate_;
DISALLOW_COPY_AND_ASSIGN(AppListServiceAsh);
« no previous file with comments | « chrome/browser/ui/ash/app_list/app_list_controller_ash.cc ('k') | chrome/browser/ui/ash/app_list/app_list_service_ash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698