Chromium Code Reviews| Index: chrome/browser/ui/app_list/app_list_view_delegate.h |
| diff --git a/chrome/browser/ui/app_list/app_list_view_delegate.h b/chrome/browser/ui/app_list/app_list_view_delegate.h |
| index d2803c0225862244b7087f27b1ee0d91531e2d7d..87f3c62f8614325c0c29fc9fd41e6c025e0adf88 100644 |
| --- a/chrome/browser/ui/app_list/app_list_view_delegate.h |
| +++ b/chrome/browser/ui/app_list/app_list_view_delegate.h |
| @@ -8,6 +8,7 @@ |
| #include <string> |
| #include "base/basictypes.h" |
| +#include "base/callback.h" |
|
xiyuan
2013/06/19 05:41:38
nit: #include "base/callback_forward.h" and includ
koz (OOO until 15th September)
2013/06/19 07:55:08
Done.
|
| #include "base/compiler_specific.h" |
| #include "base/memory/scoped_ptr.h" |
| #include "ui/app_list/app_list_view_delegate.h" |
| @@ -20,6 +21,10 @@ namespace app_list { |
| class SearchController; |
| } |
| +namespace base { |
| +class FilePath; |
| +} |
| + |
| namespace gfx { |
| class ImageSkia; |
| } |
| @@ -38,6 +43,9 @@ class AppListViewDelegate : public app_list::AppListViewDelegate { |
| // Overridden from app_list::AppListViewDelegate: |
| virtual void SetModel(app_list::AppListModel* model) OVERRIDE; |
| virtual app_list::SigninDelegate* GetSigninDelegate() OVERRIDE; |
| + virtual void GetShortcutPathForApp( |
| + const std::string& app_id, |
| + base::Callback<void(const base::FilePath&)> callback) OVERRIDE; |
| virtual void ActivateAppListItem(app_list::AppListItemModel* item, |
| int event_flags) OVERRIDE; |
| virtual void StartSearch() OVERRIDE; |