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

Unified Diff: chrome/browser/ui/app_list/app_list_service_disabled.cc

Issue 18421007: [win] Set the profile path when enabling the app launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, and fix a few things Created 7 years, 5 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_service_disabled.cc
diff --git a/chrome/browser/ui/app_list/app_list_service_disabled.cc b/chrome/browser/ui/app_list/app_list_service_disabled.cc
index 8122e9764cd003bf7c0546feb54ba8f3f0ec7c1c..2994cdc3101e7ff7db0da8df6c7a41eb3ee53e52 100644
--- a/chrome/browser/ui/app_list/app_list_service_disabled.cc
+++ b/chrome/browser/ui/app_list/app_list_service_disabled.cc
@@ -27,17 +27,15 @@ class AppListServiceDisabled : public AppListService {
const base::FilePath& user_data_dir) OVERRIDE {
return base::FilePath();
}
+ virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE {}
virtual void ShowForSavedProfile() OVERRIDE {}
virtual void ShowAppList(Profile* profile) OVERRIDE {}
virtual void DismissAppList() OVERRIDE {}
- virtual void SetAppListProfile(
- const base::FilePath& profile_file_path) OVERRIDE {}
-
virtual Profile* GetCurrentAppListProfile() OVERRIDE { return NULL; }
virtual bool IsAppListVisible() const OVERRIDE { return false; }
- virtual void EnableAppList() OVERRIDE {}
+ virtual void EnableAppList(Profile* initial_profile) OVERRIDE {}
virtual AppListControllerDelegate* CreateControllerDelegate() OVERRIDE {
return NULL;

Powered by Google App Engine
This is Rietveld 408576698