| 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..2e7c709ce4ce06fe43b783f89dd4b5c8ddb79cf7 100644
|
| --- a/chrome/browser/prefs/command_line_pref_store_unittest.cc
|
| +++ b/chrome/browser/prefs/command_line_pref_store_unittest.cc
|
| @@ -32,7 +32,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(ProxyPrefs::kProxy, &value));
|
| ASSERT_EQ(base::Value::TYPE_DICTIONARY, value->GetType());
|
| ProxyConfigDictionary dict(
|
| static_cast<const base::DictionaryValue*>(value));
|
| @@ -114,7 +114,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(ProxyPrefs::kProxy, &value));
|
| ASSERT_EQ(base::Value::TYPE_DICTIONARY, value->GetType());
|
| ProxyConfigDictionary dict(static_cast<const base::DictionaryValue*>(value));
|
|
|
|
|