OLD | NEW |
---|---|
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_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "ui/app_list/app_list_view_delegate.h" | 14 #include "ui/app_list/app_list_view_delegate.h" |
15 | 15 |
16 class AppListControllerDelegate; | 16 class AppListControllerDelegate; |
17 class AppsModelBuilder; | 17 class AppsModelBuilder; |
18 class AvatarMenuModel; | |
18 class Profile; | 19 class Profile; |
20 struct AvatarMenuItemModel; | |
19 | 21 |
20 namespace app_list { | 22 namespace app_list { |
21 class SearchController; | 23 class SearchController; |
22 } | 24 } |
23 | 25 |
24 namespace base { | 26 namespace base { |
25 class FilePath; | 27 class FilePath; |
26 } | 28 } |
27 | 29 |
28 namespace gfx { | 30 namespace gfx { |
29 class ImageSkia; | 31 class ImageSkia; |
30 } | 32 } |
31 | 33 |
32 #if defined(USE_ASH) | 34 #if defined(USE_ASH) |
33 class AppSyncUIStateWatcher; | 35 class AppSyncUIStateWatcher; |
34 #endif | 36 #endif |
35 | 37 |
36 class AppListViewDelegate : public app_list::AppListViewDelegate { | 38 class AppListViewDelegate : public app_list::AppListViewDelegate { |
37 public: | 39 public: |
38 // The delegate will take ownership of the controller. | 40 // The delegate will take ownership of the controller. |
tapted
2013/07/29 01:59:10
nit: the comment needs to be updated to say it tak
calamity
2013/07/30 08:42:34
N/A.
| |
39 AppListViewDelegate(AppListControllerDelegate* controller, Profile* profile); | 41 AppListViewDelegate(AppListControllerDelegate* controller, |
tapted
2013/07/29 01:59:10
Aand... this should probably be updated to use sco
| |
42 Profile* profile, | |
43 AvatarMenuModel* avatar_menu_model); | |
40 virtual ~AppListViewDelegate(); | 44 virtual ~AppListViewDelegate(); |
41 | 45 |
42 private: | 46 private: |
43 // Overridden from app_list::AppListViewDelegate: | 47 // Overridden from app_list::AppListViewDelegate: |
44 virtual void SetModel(app_list::AppListModel* model) OVERRIDE; | 48 virtual void SetModel(app_list::AppListModel* model) OVERRIDE; |
45 virtual app_list::SigninDelegate* GetSigninDelegate() OVERRIDE; | 49 virtual app_list::SigninDelegate* GetSigninDelegate() OVERRIDE; |
46 virtual void GetShortcutPathForApp( | 50 virtual void GetShortcutPathForApp( |
47 const std::string& app_id, | 51 const std::string& app_id, |
48 const base::Callback<void(const base::FilePath&)>& callback) OVERRIDE; | 52 const base::Callback<void(const base::FilePath&)>& callback) OVERRIDE; |
49 virtual void ActivateAppListItem(app_list::AppListItemModel* item, | 53 virtual void ActivateAppListItem(app_list::AppListItemModel* item, |
50 int event_flags) OVERRIDE; | 54 int event_flags) OVERRIDE; |
51 virtual void StartSearch() OVERRIDE; | 55 virtual void StartSearch() OVERRIDE; |
52 virtual void StopSearch() OVERRIDE; | 56 virtual void StopSearch() OVERRIDE; |
53 virtual void OpenSearchResult(app_list::SearchResult* result, | 57 virtual void OpenSearchResult(app_list::SearchResult* result, |
54 int event_flags) OVERRIDE; | 58 int event_flags) OVERRIDE; |
55 virtual void InvokeSearchResultAction(app_list::SearchResult* result, | 59 virtual void InvokeSearchResultAction(app_list::SearchResult* result, |
56 int action_index, | 60 int action_index, |
57 int event_flags) OVERRIDE; | 61 int event_flags) OVERRIDE; |
58 virtual void Dismiss() OVERRIDE; | 62 virtual void Dismiss() OVERRIDE; |
59 virtual void ViewClosing() OVERRIDE; | 63 virtual void ViewClosing() OVERRIDE; |
60 virtual void ViewActivationChanged(bool active) OVERRIDE; | 64 virtual void ViewActivationChanged(bool active) OVERRIDE; |
61 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; | 65 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; |
62 virtual string16 GetCurrentUserName() OVERRIDE; | 66 virtual string16 GetCurrentUserName() OVERRIDE; |
63 virtual string16 GetCurrentUserEmail() OVERRIDE; | 67 virtual string16 GetCurrentUserEmail() OVERRIDE; |
64 virtual void OpenSettings() OVERRIDE; | 68 virtual void OpenSettings() OVERRIDE; |
65 virtual void OpenHelp() OVERRIDE; | 69 virtual void OpenHelp() OVERRIDE; |
66 virtual void OpenFeedback() OVERRIDE; | 70 virtual void OpenFeedback() OVERRIDE; |
71 virtual std::vector<AvatarMenuItemModel> GetAvatarMenuItems() OVERRIDE; | |
72 virtual void ShowForProfileAtIndex(size_t index) OVERRIDE; | |
67 | 73 |
74 scoped_ptr<AvatarMenuModel> avatar_menu_model_; | |
68 scoped_ptr<app_list::SigninDelegate> signin_delegate_; | 75 scoped_ptr<app_list::SigninDelegate> signin_delegate_; |
69 scoped_ptr<AppsModelBuilder> apps_builder_; | 76 scoped_ptr<AppsModelBuilder> apps_builder_; |
70 scoped_ptr<app_list::SearchController> search_controller_; | 77 scoped_ptr<app_list::SearchController> search_controller_; |
71 scoped_ptr<AppListControllerDelegate> controller_; | 78 scoped_ptr<AppListControllerDelegate> controller_; |
72 Profile* profile_; | 79 Profile* profile_; |
73 | 80 |
74 #if defined(USE_ASH) | 81 #if defined(USE_ASH) |
75 scoped_ptr<AppSyncUIStateWatcher> app_sync_ui_state_watcher_; | 82 scoped_ptr<AppSyncUIStateWatcher> app_sync_ui_state_watcher_; |
76 #endif | 83 #endif |
77 | 84 |
78 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); | 85 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); |
79 }; | 86 }; |
80 | 87 |
81 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 88 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
OLD | NEW |