Chromium Code Reviews| Index: chrome/browser/ui/app_list/app_list_controller.h |
| diff --git a/chrome/browser/ui/app_list/app_list_controller.h b/chrome/browser/ui/app_list/app_list_controller.h |
| index 65aaa6a424437586b4f0085c30206a2194aee5ff..8bd60ea8d6a2cb38d8b9431e233df8b9f91c37b8 100644 |
| --- a/chrome/browser/ui/app_list/app_list_controller.h |
| +++ b/chrome/browser/ui/app_list/app_list_controller.h |
| @@ -7,6 +7,10 @@ |
| #include <string> |
| +namespace gfx { |
| +class ImageSkia; |
| +} |
| + |
| class Profile; |
| // Interface to allow the view delegate to call out to whatever is controlling |
| @@ -29,6 +33,15 @@ class AppListController { |
| virtual void ActivateApp(Profile* profile, |
| const std::string& extension_id, |
| int event_flags) = 0; |
| + |
| + // Get the window icon to show, if any. |
| + virtual gfx::ImageSkia GetWindowAppIcon() = 0; |
| }; |
| +namespace app_list_controller { |
| + |
| +void ShowAppList(); |
|
msw
2012/08/31 09:16:58
nit: add comment.
benwells
2012/09/04 04:47:59
Done.
|
| + |
| +} |
| + |
| #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_H_ |