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

Unified Diff: chrome/installer/util/google_update_settings.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/util/google_chrome_distribution.cc ('k') | chrome/installer/util/helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/google_update_settings.cc
===================================================================
--- chrome/installer/util/google_update_settings.cc (revision 273136)
+++ chrome/installer/util/google_update_settings.cc (working copy)
@@ -55,10 +55,9 @@
bool ReadGoogleUpdateStrKey(const wchar_t* const name, std::wstring* value) {
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
std::wstring reg_path = dist->GetStateKey();
- RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ | KEY_WOW64_32KEY);
+ RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ);
if (key.ReadValue(name, value) != ERROR_SUCCESS) {
- RegKey hklm_key(
- HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_READ | KEY_WOW64_32KEY);
+ RegKey hklm_key(HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_READ);
return (hklm_key.ReadValue(name, value) == ERROR_SUCCESS);
}
return true;
@@ -127,9 +126,7 @@
bool ClearGoogleUpdateStrKey(const wchar_t* const name) {
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
std::wstring reg_path = dist->GetStateKey();
- RegKey key(HKEY_CURRENT_USER,
- reg_path.c_str(),
- KEY_READ | KEY_WRITE | KEY_WOW64_32KEY);
+ RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ | KEY_WRITE);
std::wstring value;
if (key.ReadValue(name, &value) != ERROR_SUCCESS)
return false;
@@ -139,9 +136,7 @@
bool RemoveGoogleUpdateStrKey(const wchar_t* const name) {
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
std::wstring reg_path = dist->GetStateKey();
- RegKey key(HKEY_CURRENT_USER,
- reg_path.c_str(),
- KEY_READ | KEY_WRITE | KEY_WOW64_32KEY);
+ RegKey key(HKEY_CURRENT_USER, reg_path.c_str(), KEY_READ | KEY_WRITE);
if (!key.HasValue(name))
return true;
return (key.DeleteValue(name) == ERROR_SUCCESS);
@@ -157,7 +152,7 @@
HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER;
base::string16 reg_path = dist->GetStateKey();
- RegKey key(root_key, reg_path.c_str(), KEY_READ | KEY_WOW64_32KEY);
+ RegKey key(root_key, reg_path.c_str(), KEY_READ);
installer::ChannelInfo channel_info;
if (!channel_info.Initialize(key)) {
@@ -438,9 +433,8 @@
std::wstring reg_key(google_update::kRegPathClientState);
reg_key.append(L"\\");
reg_key.append(product_guid);
- LONG result = key.Open(reg_root,
- reg_key.c_str(),
- KEY_QUERY_VALUE | KEY_SET_VALUE | KEY_WOW64_32KEY);
+ LONG result = key.Open(reg_root, reg_key.c_str(),
+ KEY_QUERY_VALUE | KEY_SET_VALUE);
if (result == ERROR_SUCCESS)
channel_info.Initialize(key);
else if (result != ERROR_FILE_NOT_FOUND)
@@ -451,12 +445,10 @@
// We have a modified channel_info value to write.
// Create the app's ClientState key if it doesn't already exist.
if (!key.Valid()) {
- result = key.Open(reg_root,
- google_update::kRegPathClientState,
- KEY_CREATE_SUB_KEY | KEY_WOW64_32KEY);
+ result = key.Open(reg_root, google_update::kRegPathClientState,
+ KEY_CREATE_SUB_KEY);
if (result == ERROR_SUCCESS)
- result = key.CreateKey(product_guid.c_str(),
- KEY_SET_VALUE | KEY_WOW64_32KEY);
+ result = key.CreateKey(product_guid.c_str(), KEY_SET_VALUE);
if (result != ERROR_SUCCESS) {
LOG(ERROR) << "Failed to create " << reg_key << "; Error: " << result;
@@ -527,8 +519,7 @@
std::wstring reg_path = dist->GetStateKey();
// Minimum access needed is to be able to write to this key.
- RegKey reg_key(
- HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_SET_VALUE | KEY_WOW64_32KEY);
+ RegKey reg_key(HKEY_LOCAL_MACHINE, reg_path.c_str(), KEY_SET_VALUE);
if (!reg_key.Valid())
return 0;
@@ -561,7 +552,6 @@
RegKey policy_key;
// Google Update Group Policy settings are always in HKLM.
- // TODO(wfh): Check if policies should go into Wow6432Node or not.
if (policy_key.Open(HKEY_LOCAL_MACHINE, kPoliciesKey, KEY_QUERY_VALUE) ==
ERROR_SUCCESS) {
DWORD value = 0;
@@ -713,9 +703,9 @@
if (key.Open(root_key,
google_update::kRegPathGoogleUpdate,
- KEY_QUERY_VALUE | KEY_WOW64_32KEY) == ERROR_SUCCESS &&
- key.ReadValue(google_update::kRegGoogleUpdateVersion, &version) ==
- ERROR_SUCCESS) {
+ KEY_QUERY_VALUE) == ERROR_SUCCESS &&
+ key.ReadValue(google_update::kRegGoogleUpdateVersion,
+ &version) == ERROR_SUCCESS) {
return Version(base::UTF16ToUTF8(version));
}
@@ -727,9 +717,8 @@
const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER;
RegKey update_key;
- if (update_key.Open(root_key,
- google_update::kRegPathGoogleUpdate,
- KEY_QUERY_VALUE | KEY_WOW64_32KEY) == ERROR_SUCCESS) {
+ if (update_key.Open(root_key, google_update::kRegPathGoogleUpdate,
+ KEY_QUERY_VALUE) == ERROR_SUCCESS) {
DWORD last_start;
if (update_key.ReadValueDW(google_update::kRegLastStartedAUField,
&last_start) == ERROR_SUCCESS) {
@@ -745,9 +734,8 @@
const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER;
RegKey update_key;
- if (update_key.Open(root_key,
- google_update::kRegPathGoogleUpdate,
- KEY_QUERY_VALUE | KEY_WOW64_32KEY) == ERROR_SUCCESS) {
+ if (update_key.Open(root_key, google_update::kRegPathGoogleUpdate,
+ KEY_QUERY_VALUE) == ERROR_SUCCESS) {
DWORD last_check;
if (update_key.ReadValueDW(google_update::kRegLastCheckedField,
&last_check) == ERROR_SUCCESS) {
@@ -772,9 +760,8 @@
clientstate_reg_path.append(app_guid);
RegKey clientstate;
- if (clientstate.Open(root_key,
- clientstate_reg_path.c_str(),
- KEY_QUERY_VALUE | KEY_WOW64_32KEY) == ERROR_SUCCESS) {
+ if (clientstate.Open(root_key, clientstate_reg_path.c_str(),
+ KEY_QUERY_VALUE) == ERROR_SUCCESS) {
base::string16 version;
DWORD dword_value;
if ((clientstate.ReadValueDW(google_update::kRegLastCheckSuccessField,
@@ -837,7 +824,7 @@
base::string16 client_state_path(
system_install ? dist->GetStateMediumKey() : dist->GetStateKey());
RegKey client_state(
- reg_root, client_state_path.c_str(), KEY_SET_VALUE | KEY_WOW64_32KEY);
+ reg_root, client_state_path.c_str(), KEY_SET_VALUE);
if (experiment_labels.empty()) {
success = client_state.DeleteValue(google_update::kExperimentLabels)
== ERROR_SUCCESS;
@@ -865,8 +852,8 @@
system_install ? dist->GetStateMediumKey() : dist->GetStateKey());
RegKey client_state;
- LONG result = client_state.Open(
- reg_root, client_state_path.c_str(), KEY_QUERY_VALUE | KEY_WOW64_32KEY);
+ LONG result =
+ client_state.Open(reg_root, client_state_path.c_str(), KEY_QUERY_VALUE);
if (result == ERROR_SUCCESS) {
result = client_state.ReadValue(google_update::kExperimentLabels,
experiment_labels);
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698