Index: apps/prefs.cc |
diff --git a/apps/prefs.cc b/apps/prefs.cc |
index b883fbb456c23e89191057cfba300fc9a1834a88..58ced783fbbd63fc2dc1f274d5816b5f3432878a 100644 |
--- a/apps/prefs.cc |
+++ b/apps/prefs.cc |
@@ -20,6 +20,11 @@ void RegisterPrefs(PrefRegistrySimple* registry) { |
// GetIsAppLauncherEnabled(). |
registry->RegisterBooleanPref(prefs::kAppLauncherIsEnabled, |
MaybeIsAppLauncherEnabled()); |
+ // Currently only available on Windows. |
+#if defined(OS_WIN) |
+ // Identifies whether we should show the app launcher promo or not. |
+ registry->RegisterBooleanPref(prefs::kShowAppLauncherPromo, true); |
+#endif |
} |
} // namespace apps |