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

Unified Diff: chrome/installer/gcapi/gcapi_reactivation_test.cc

Issue 297233010: Revert 273108 "Omaha configuration parameters now use Wow6432Nod..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/2017/src/
Patch Set: Created 6 years, 7 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
« no previous file with comments | « chrome/installer/gcapi/gcapi_reactivation.cc ('k') | chrome/installer/mini_installer/mini_installer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « chrome/installer/gcapi/gcapi_reactivation.cc ('k') | chrome/installer/mini_installer/mini_installer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698