Chromium Code Reviews| Index: chrome/browser/ui/app_list/app_list_controller_delegate.h |
| diff --git a/chrome/browser/ui/app_list/app_list_controller_delegate.h b/chrome/browser/ui/app_list/app_list_controller_delegate.h |
| index 9c19c6d02ad0ec931ddef5db89b64058b8d0a089..b6c59692a6c6ac7127096d76a2d10ccfa731fd01 100644 |
| --- a/chrome/browser/ui/app_list/app_list_controller_delegate.h |
| +++ b/chrome/browser/ui/app_list/app_list_controller_delegate.h |
| @@ -9,6 +9,7 @@ |
| #include "ui/gfx/native_widget_types.h" |
| +class FilePath; |
| class Profile; |
| namespace extensions { |
| @@ -64,4 +65,17 @@ class AppListControllerDelegate { |
| int event_flags) = 0; |
| }; |
| +namespace chrome { |
| + |
| +// Do any once off initialization needed for the app list. |
| +void InitAppList(Profile* default_profile); |
|
benwells
2013/01/21 00:36:31
Why are these here and in app_list_util.h?
tapted
2013/01/21 00:41:13
Actually, that's a better point - (these were refa
koz (OOO until 15th September)
2013/01/21 23:23:15
Done.
|
| + |
| +// Show the app list. |
| +void ShowAppList(Profile* default_profile); |
| + |
| +// Change the profile path used for populating the app list. |
| +void UpdateProfilePath(const FilePath& profile_file_path); |
|
tapted
2013/01/21 00:37:02
should be SetAppListProfile
|
| + |
| +} // namespace chrome |
| + |
| #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_DELEGATE_H_ |