Add authentication whitelist preferences (issue #1150)

This commit is contained in:
Marshall Greenblatt
2016-10-27 12:52:54 -04:00
parent 0e97c527ae
commit d8f943cd94
3 changed files with 35 additions and 0 deletions

View File

@@ -200,6 +200,10 @@ std::unique_ptr<PrefService> CreatePrefService(
registry->RegisterBooleanPref(prefs::kEnableDRM, false);
registry->RegisterStringPref(prefs::kDRMSalt, "");
// Authentication preferences.
registry->RegisterStringPref(prefs::kAuthServerWhitelist, "");
registry->RegisterStringPref(prefs::kAuthNegotiateDelegateWhitelist, "");
// Plugin preferences.
// Based on chrome::RegisterBrowserUserPrefs.
registry->RegisterBooleanPref(prefs::kPluginsAllowOutdated, false);