Index: chrome/browser/prefs/command_line_pref_store_unittest.cc |
diff --git a/chrome/browser/prefs/command_line_pref_store_unittest.cc b/chrome/browser/prefs/command_line_pref_store_unittest.cc |
index d515a1c7df4939cc6ebb55183d7b15fc6a0430de..2799e29a00de1742be7daeb636f030665778867b 100644 |
--- a/chrome/browser/prefs/command_line_pref_store_unittest.cc |
+++ b/chrome/browser/prefs/command_line_pref_store_unittest.cc |
@@ -12,6 +12,7 @@ |
#include "chrome/common/chrome_switches.h" |
#include "chrome/common/pref_names.h" |
#include "components/proxy_config/proxy_config_dictionary.h" |
+#include "components/proxy_config/proxy_config_pref_names.h" |
#include "ui/base/ui_base_switches.h" |
namespace { |
@@ -32,7 +33,7 @@ class TestCommandLinePrefStore : public CommandLinePrefStore { |
void VerifyProxyMode(ProxyPrefs::ProxyMode expected_mode) { |
const base::Value* value = NULL; |
- ASSERT_TRUE(GetValue(prefs::kProxy, &value)); |
+ ASSERT_TRUE(GetValue(proxy_config::prefs::kProxy, &value)); |
ASSERT_EQ(base::Value::TYPE_DICTIONARY, value->GetType()); |
ProxyConfigDictionary dict( |
static_cast<const base::DictionaryValue*>(value)); |
@@ -114,7 +115,7 @@ TEST(CommandLinePrefStoreTest, MultipleSwitches) { |
store->VerifyProxyMode(ProxyPrefs::MODE_FIXED_SERVERS); |
const base::Value* value = NULL; |
- ASSERT_TRUE(store->GetValue(prefs::kProxy, &value)); |
+ ASSERT_TRUE(store->GetValue(proxy_config::prefs::kProxy, &value)); |
ASSERT_EQ(base::Value::TYPE_DICTIONARY, value->GetType()); |
ProxyConfigDictionary dict(static_cast<const base::DictionaryValue*>(value)); |