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

Unified Diff: chrome/browser/prefs/command_line_pref_store.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/prefs/command_line_pref_store.cc
diff --git a/chrome/browser/prefs/command_line_pref_store.cc b/chrome/browser/prefs/command_line_pref_store.cc
index 460cf2ccbab72ddc8cafb17e3066249152142705..49ac6269d98f81371cfd06b8b282309415d59965 100644
--- a/chrome/browser/prefs/command_line_pref_store.cc
+++ b/chrome/browser/prefs/command_line_pref_store.cc
@@ -22,6 +22,7 @@
#include "components/ssl_config/ssl_config_prefs.h"
#include "components/ssl_config/ssl_config_switches.h"
#include "content/public/common/content_switches.h"
+#include "net/base/net_pref_names.h"
#include "ui/base/ui_base_switches.h"
#if defined(OS_CHROMEOS)
@@ -33,14 +34,14 @@ const CommandLinePrefStore::StringSwitchToPreferenceMapEntry
{ switches::kLang, prefs::kApplicationLocale },
{ data_reduction_proxy::switches::kDataReductionProxy,
data_reduction_proxy::prefs::kDataReductionProxy },
- { switches::kAuthServerWhitelist, prefs::kAuthServerWhitelist },
+ { switches::kAuthServerWhitelist, net::prefs::kAuthServerWhitelist },
{ switches::kSSLVersionMin, ssl_config::prefs::kSSLVersionMin },
{ switches::kSSLVersionMax, ssl_config::prefs::kSSLVersionMax },
{ switches::kSSLVersionFallbackMin,
ssl_config::prefs::kSSLVersionFallbackMin },
#if defined(OS_ANDROID)
{ switches::kAuthAndroidNegotiateAccountType,
- prefs::kAuthAndroidNegotiateAccountType },
+ net::prefs::kAuthAndroidNegotiateAccountType },
#endif
};

Powered by Google App Engine
This is Rietveld 408576698