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

Unified Diff: chrome/browser/policy/configuration_policy_handler_list_factory.cc

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move //base/prefs references out of net - part 1. Created 5 years, 1 month 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/policy/configuration_policy_handler_list_factory.cc
diff --git a/chrome/browser/policy/configuration_policy_handler_list_factory.cc b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
index 6c097adf3641a164e58deff2c6195d13bd440dfc..99e58505401d5bb3fc9adc9446754066ed120f2d 100644
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
@@ -33,6 +33,7 @@
#include "components/ssl_config/ssl_config_prefs.h"
#include "components/translate/core/common/translate_pref_names.h"
#include "components/variations/pref_names.h"
+#include "net/base/net_pref_names.h"
#include "policy/policy_constants.h"
#if defined(OS_ANDROID)
@@ -226,22 +227,22 @@ const PolicyToPreferenceMapEntry kSimplePolicyMap[] = {
ssl_config::prefs::kCertRevocationCheckingRequiredLocalAnchors,
base::Value::TYPE_BOOLEAN },
{ key::kAuthSchemes,
- prefs::kAuthSchemes,
+ net::prefs::kAuthSchemes,
base::Value::TYPE_STRING },
{ key::kDisableAuthNegotiateCnameLookup,
- prefs::kDisableAuthNegotiateCnameLookup,
+ net::prefs::kDisableAuthNegotiateCnameLookup,
base::Value::TYPE_BOOLEAN },
{ key::kEnableAuthNegotiatePort,
- prefs::kEnableAuthNegotiatePort,
+ net::prefs::kEnableAuthNegotiatePort,
base::Value::TYPE_BOOLEAN },
{ key::kAuthServerWhitelist,
- prefs::kAuthServerWhitelist,
+ net::prefs::kAuthServerWhitelist,
base::Value::TYPE_STRING },
{ key::kAuthNegotiateDelegateWhitelist,
- prefs::kAuthNegotiateDelegateWhitelist,
+ net::prefs::kAuthNegotiateDelegateWhitelist,
base::Value::TYPE_STRING },
{ key::kGSSAPILibraryName,
- prefs::kGSSAPILibraryName,
+ net::prefs::kGSSAPILibraryName,
base::Value::TYPE_STRING },
{ key::kAllowCrossOriginAuthPrompt,
prefs::kAllowCrossOriginAuthPrompt,
@@ -504,7 +505,7 @@ const PolicyToPreferenceMapEntry kSimplePolicyMap[] = {
data_reduction_proxy::prefs::kDataReductionProxyEnabled,
base::Value::TYPE_BOOLEAN },
{ key::kAuthAndroidNegotiateAccountType,
- prefs::kAuthAndroidNegotiateAccountType,
+ net::prefs::kAuthAndroidNegotiateAccountType,
base::Value::TYPE_STRING },
#endif // defined(OS_ANDROID)

Powered by Google App Engine
This is Rietveld 408576698