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

Unified Diff: apps/prefs.cc

Issue 13940006: Remove --show-app-list-shortcut flag and implement new app launcher enable logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make start menu shortcut creation happen on enable Created 7 years, 8 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 2685860d703d61dd79c6762ecc94ec1433fec824..bb7db1d157742d49fa94c25375f6bbaac39f704e 100644
--- a/apps/prefs.cc
+++ b/apps/prefs.cc
@@ -23,6 +23,9 @@ void RegisterPrefs(PrefRegistrySimple* registry) {
#if defined(OS_WIN)
registry->RegisterStringPref(prefs::kAppLaunchForMetroRestart, "");
registry->RegisterStringPref(prefs::kAppLaunchForMetroRestartProfile, "");
+ registry->RegisterBooleanPref(prefs::kAppLauncherHasBeenEnabled, false);
+ registry->RegisterBooleanPref(prefs::kAppLauncherStartMenuShortcutCreated,
+ false);
#endif
// Identifies whether we should show the app launcher promo or not.

Powered by Google App Engine
This is Rietveld 408576698