Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: chrome/browser/ui/app_list/app_list_util.h

Issue 11968034: Enable profile switching for standalone App Launcher via the Settings App. (Closed) Base URL: git://nomatter.syd/chromium/src.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698