| Index: chrome/installer/util/google_update_settings_unittest.cc
|
| diff --git a/chrome/installer/util/google_update_settings_unittest.cc b/chrome/installer/util/google_update_settings_unittest.cc
|
| index ffedf510154b03b1d12276be558ac0838891d248..875e11efe7b95eba94372df433996a6d2ebe311a 100644
|
| --- a/chrome/installer/util/google_update_settings_unittest.cc
|
| +++ b/chrome/installer/util/google_update_settings_unittest.cc
|
| @@ -447,13 +447,13 @@ TEST_F(GoogleUpdateSettingsTest, SetEULAConsent) {
|
| key.Open(HKEY_LOCAL_MACHINE, binaries->GetStateMediumKey().c_str(),
|
| KEY_QUERY_VALUE));
|
| EXPECT_EQ(ERROR_SUCCESS,
|
| - key.ReadValueDW(google_update::kRegEULAAceptedField, &value));
|
| + key.ReadValue(google_update::kRegEULAAceptedField, &value));
|
| EXPECT_EQ(1U, value);
|
| EXPECT_EQ(ERROR_SUCCESS,
|
| key.Open(HKEY_LOCAL_MACHINE, chrome->GetStateMediumKey().c_str(),
|
| KEY_QUERY_VALUE));
|
| EXPECT_EQ(ERROR_SUCCESS,
|
| - key.ReadValueDW(google_update::kRegEULAAceptedField, &value));
|
| + key.ReadValue(google_update::kRegEULAAceptedField, &value));
|
| EXPECT_EQ(1U, value);
|
| }
|
|
|
|
|