Chromium Code Reviews| Index: chrome/browser/profiles/profile_impl.cc |
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
| index 84aec92da983ec683f8da541f194a16d2a15c05b..43778c018e256f28e85c25a3bbed5779e4b059dc 100644 |
| --- a/chrome/browser/profiles/profile_impl.cc |
| +++ b/chrome/browser/profiles/profile_impl.cc |
| @@ -283,6 +283,14 @@ void ProfileImpl::RegisterUserPrefs(PrefService* prefs) { |
| prefs->RegisterBooleanPref(prefs::kClearSiteDataOnExit, |
| false, |
| PrefService::SYNCABLE_PREF); |
| + |
| + // Preferences for whitelist and blacklists |
|
Bernhard Bauer
2012/11/16 15:04:46
We usually explain what preferences are for in pre
Sergiu
2012/11/26 14:48:08
Removed and rephrased in pref_names.cc.
|
| + prefs->RegisterListPref(prefs::kManagedModeWhitelist, |
| + new ListValue(), |
| + PrefService::UNSYNCABLE_PREF); |
| + prefs->RegisterListPref(prefs::kManagedModeBlacklist, |
| + new ListValue(), |
| + PrefService::UNSYNCABLE_PREF); |
| } |
| ProfileImpl::ProfileImpl(const FilePath& path, |