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

Unified Diff: apps/prefs.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: apps/prefs.cc
diff --git a/apps/prefs.cc b/apps/prefs.cc
index 878ec85674ff8165fa8e8fdd3aca8dee89fd1d35..311d663bca15161dc6276eb1a840d6d8bda409c1 100644
--- a/apps/prefs.cc
+++ b/apps/prefs.cc
@@ -20,11 +20,11 @@ void RegisterPrefs(PrefRegistrySimple* registry) {
// Anything that needs to know the absolute truth should call
// GetIsAppLauncherEnabled().
registry->RegisterBooleanPref(prefs::kAppLauncherIsEnabled, false);
+ registry->RegisterBooleanPref(prefs::kAppLauncherHasBeenEnabled, false);
#if defined(OS_WIN)
registry->RegisterStringPref(prefs::kAppLaunchForMetroRestart, "");
registry->RegisterStringPref(prefs::kAppLaunchForMetroRestartProfile, "");
- registry->RegisterBooleanPref(prefs::kAppLauncherHasBeenEnabled, false);
#endif
// Identifies whether we should show the app launcher promo or not.

Powered by Google App Engine
This is Rietveld 408576698