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

Unified Diff: chrome/browser/chromeos/preferences.cc

Issue 2258553004: Add pref to enable/disable palette tray. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Initial upload Created 4 years, 4 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/chromeos/preferences.cc
diff --git a/chrome/browser/chromeos/preferences.cc b/chrome/browser/chromeos/preferences.cc
index 33bffebba903cf1b812f6678a040de2bf22f0a82..696fae878a6a4dcf9f689036b450b8a3475068bc 100644
--- a/chrome/browser/chromeos/preferences.cc
+++ b/chrome/browser/chromeos/preferences.cc
@@ -277,6 +277,9 @@ void Preferences::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
registry->RegisterBooleanPref(
+ prefs::kEnableAshPalette, true,
+ user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
stevenjb 2016/08/23 17:36:41 Do we really want to add a syncable pref with this
jdufault 2016/08/23 22:49:56 I made the pref non-syncable and added a TODO to r
+ registry->RegisterBooleanPref(
prefs::kLaunchNoteAppOnEjectEvent, true,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);

Powered by Google App Engine
This is Rietveld 408576698