Index: chrome/browser/profiles/profile_impl.cc |
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
index f6c9367070353eef0747e2c260329de83dc36641..48e8796c01d7a51761ccc6d7144f0099bfa61b32 100644 |
--- a/chrome/browser/profiles/profile_impl.cc |
+++ b/chrome/browser/profiles/profile_impl.cc |
@@ -315,6 +315,11 @@ void ProfileImpl::RegisterUserPrefs(PrefServiceSyncable* prefs) { |
prefs->RegisterBooleanPref(prefs::kClearSiteDataOnExit, |
false, |
PrefServiceSyncable::SYNCABLE_PREF); |
+ |
+ prefs->RegisterListPref(prefs::kManagedModeWhitelist, |
Bernhard Bauer
2013/01/07 12:34:19
Please don't lump new preferences into arbitrary p
Sergiu
2013/01/07 16:25:05
Got it, I was under the wrong impression that the
|
+ PrefServiceSyncable::UNSYNCABLE_PREF); |
+ prefs->RegisterListPref(prefs::kManagedModeBlacklist, |
+ PrefServiceSyncable::UNSYNCABLE_PREF); |
} |
ProfileImpl::ProfileImpl( |