summaryrefslogtreecommitdiffstats
path: root/chrome/installer
diff options
context:
space:
mode:
authorkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-31 16:24:10 +0000
committerkuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-31 16:24:10 +0000
commit62e176441dda58a361f5c3d9ee3edff7d5727681 (patch)
treeb10503bcc58b6a60ff1a1574afaeef32d7d4442d /chrome/installer
parent8da547c5a635a053faef6e41b0886d5af2b43219 (diff)
downloadchromium_src-62e176441dda58a361f5c3d9ee3edff7d5727681.zip
chromium_src-62e176441dda58a361f5c3d9ee3edff7d5727681.tar.gz
chromium_src-62e176441dda58a361f5c3d9ee3edff7d5727681.tar.bz2
fix build
Review URL: http://codereview.chromium.org/8966 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4286 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r--chrome/installer/util/google_chrome_distribution_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/google_chrome_distribution_unittest.cc b/chrome/installer/util/google_chrome_distribution_unittest.cc
index be8f416..6396659 100644
--- a/chrome/installer/util/google_chrome_distribution_unittest.cc
+++ b/chrome/installer/util/google_chrome_distribution_unittest.cc
@@ -32,7 +32,7 @@ class GoogleChromeDistributionTest : public testing::Test {
std::wstring reg_key = GetApKeyPath();
work_item_list->AddCreateRegKeyWorkItem(reg_root, reg_key);
work_item_list->AddSetRegValueWorkItem(reg_root, reg_key,
- google_update::kRegApFieldName, value.c_str(), true);
+ google_update::kRegApField, value.c_str(), true);
if (!work_item_list->Do()) {
work_item_list->Rollback();
return false;
@@ -54,7 +54,7 @@ class GoogleChromeDistributionTest : public testing::Test {
std::wstring ap_key_value;
std::wstring reg_key = GetApKeyPath();
if (key.Open(HKEY_CURRENT_USER, reg_key.c_str(), KEY_ALL_ACCESS) &&
- key.ReadValue(google_update::kRegApFieldName, &ap_key_value)) {
+ key.ReadValue(google_update::kRegApField, &ap_key_value)) {
return ap_key_value;
}
return std::wstring();