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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_
6 #define CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_ 6 #define CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chrome/browser/ui/app_list/app_list_controller_delegate.h" 10 #include "chrome/browser/ui/app_list/app_list_controller_delegate.h"
11 #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h" 11 #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h"
12 12
13 namespace app_list {
14 class AppListShowerImpl;
15 }
16
13 class AppListControllerDelegateAsh : public AppListControllerDelegate { 17 class AppListControllerDelegateAsh : public AppListControllerDelegate {
14 public: 18 public:
15 AppListControllerDelegateAsh(); 19 explicit AppListControllerDelegateAsh(app_list::AppListShowerImpl*);
16 ~AppListControllerDelegateAsh() override; 20 ~AppListControllerDelegateAsh() override;
17 21
18 private: 22 private:
19 // AppListControllerDelegate overrides: 23 // AppListControllerDelegate overrides:
20 void DismissView() override; 24 void DismissView() override;
21 gfx::NativeWindow GetAppListWindow() override; 25 gfx::NativeWindow GetAppListWindow() override;
22 gfx::Rect GetAppListBounds() override; 26 gfx::Rect GetAppListBounds() override;
23 gfx::ImageSkia GetWindowIcon() override; 27 gfx::ImageSkia GetWindowIcon() override;
24 bool IsAppPinned(const std::string& extension_id) override; 28 bool IsAppPinned(const std::string& extension_id) override;
25 void PinApp(const std::string& extension_id) override; 29 void PinApp(const std::string& extension_id) override;
(...skipping 15 matching lines...) Expand all
41 int event_flags) override; 45 int event_flags) override;
42 void LaunchApp(Profile* profile, 46 void LaunchApp(Profile* profile,
43 const extensions::Extension* extension, 47 const extensions::Extension* extension,
44 AppListSource source, 48 AppListSource source,
45 int event_flags) override; 49 int event_flags) override;
46 void ShowForProfileByPath(const base::FilePath& profile_path) override; 50 void ShowForProfileByPath(const base::FilePath& profile_path) override;
47 bool ShouldShowUserIcon() override; 51 bool ShouldShowUserIcon() override;
48 52
49 ash::LaunchSource AppListSourceToLaunchSource(AppListSource source); 53 ash::LaunchSource AppListSourceToLaunchSource(AppListSource source);
50 54
55 // Not owned.
56 app_list::AppListShowerImpl* app_list_shower_;
57
51 DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAsh); 58 DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAsh);
52 }; 59 };
53 60
54 #endif // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_ 61 #endif // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698