| Index: chrome/installer/gcapi/gcapi_reactivation_test.cc
|
| ===================================================================
|
| --- chrome/installer/gcapi/gcapi_reactivation_test.cc (revision 273136)
|
| +++ chrome/installer/gcapi/gcapi_reactivation_test.cc (working copy)
|
| @@ -31,7 +31,7 @@
|
| reg_path += google_update::kChromeUpgradeCode;
|
| RegKey client_state(hive,
|
| reg_path.c_str(),
|
| - KEY_CREATE_SUB_KEY | KEY_SET_VALUE | KEY_WOW64_32KEY);
|
| + KEY_CREATE_SUB_KEY | KEY_SET_VALUE);
|
| return (client_state.Valid() &&
|
| client_state.WriteValue(
|
| google_update::kRegVersionField, L"1.2.3.4") == ERROR_SUCCESS);
|
| @@ -51,7 +51,7 @@
|
| path += L"\\";
|
| path += google_update::kChromeUpgradeCode;
|
|
|
| - RegKey client_state(hive, path.c_str(), KEY_SET_VALUE | KEY_WOW64_32KEY);
|
| + RegKey client_state(hive, path.c_str(), KEY_SET_VALUE);
|
| return (client_state.Valid() &&
|
| client_state.WriteValue(
|
| google_update::kRegLastRunTimeField,
|
| @@ -65,7 +65,7 @@
|
|
|
| RegKey client_state_key(hive,
|
| client_state_path.c_str(),
|
| - KEY_QUERY_VALUE | KEY_WOW64_32KEY);
|
| + KEY_QUERY_VALUE);
|
| return client_state_key.Valid() &&
|
| client_state_key.HasValue(google_update::kExperimentLabels);
|
| }
|
| @@ -79,7 +79,7 @@
|
| path += L"\\";
|
| path += google_update::kChromeUpgradeCode;
|
|
|
| - RegKey client_state(hive, path.c_str(), KEY_QUERY_VALUE | KEY_WOW64_32KEY);
|
| + RegKey client_state(hive, path.c_str(), KEY_QUERY_VALUE);
|
| if (client_state.Valid()) {
|
| std::wstring actual_brand;
|
| if (client_state.ReadValue(google_update::kRegRLZReactivationBrandField,
|
|
|