| 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
|
| };
|
|
|
|
|