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

Unified Diff: chrome/installer/util/registry_test_data.cc

Issue 8344004: base/win: Add documentation to RegKey::Read/Write functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix indentation Created 9 years, 2 months 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/installer/util/registry_test_data.cc
diff --git a/chrome/installer/util/registry_test_data.cc b/chrome/installer/util/registry_test_data.cc
index b28596af72511fbefed8e59ee9d25e2c5738f7cc..8407c04c4628e40bac24cd42d3415858c0001578 100644
--- a/chrome/installer/util/registry_test_data.cc
+++ b/chrome/installer/util/registry_test_data.cc
@@ -90,7 +90,7 @@ void RegistryTestData::ExpectMatchesNonEmptyKey(HKEY root_key,
EXPECT_EQ(non_empty_key_path_, str_value);
EXPECT_EQ(ERROR_SUCCESS, key.OpenKey(L"Subkey", KEY_READ));
DWORD dw_value = 0;
- EXPECT_EQ(ERROR_SUCCESS, key.ReadValueDW(L"SomeValue", &dw_value));
+ EXPECT_EQ(ERROR_SUCCESS, key.ReadValue(L"SomeValue", &dw_value));
EXPECT_EQ(1UL, dw_value);
}

Powered by Google App Engine
This is Rietveld 408576698