Chromium Code Reviews| Index: chrome/browser/ui/app_list/app_list_util.h |
| diff --git a/chrome/browser/ui/app_list/app_list_util.h b/chrome/browser/ui/app_list/app_list_util.h |
| index 82e3bac1894d534bbcb967183745784153dfd423..7fe364f21da4fe88f78d4a5e506f2ac7407860de 100644 |
| --- a/chrome/browser/ui/app_list/app_list_util.h |
| +++ b/chrome/browser/ui/app_list/app_list_util.h |
| @@ -5,13 +5,19 @@ |
| #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_UTIL_H_ |
| #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_UTIL_H_ |
| +class FilePath; |
| +class Profile; |
| + |
| namespace chrome { |
| // Do any once off initialization needed for the app list. |
| -void InitAppList(); |
| +void InitAppList(Profile* profile); |
| // Show the app list. |
| -void ShowAppList(); |
| +void ShowAppList(Profile* profile); |
| + |
| +// Change the profile that the app list is showing. |
| +void UpdateProfilePath(const FilePath& profile_file_path); |
|
tapted
2013/01/17 04:23:31
just noticed this will be left undefined on chrome
koz (OOO until 15th September)
2013/01/18 05:37:33
Done.
|
| } // namespace chrome |