Index: chrome/installer/util/google_chrome_distribution.cc |
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc |
index c263c6b3755a82863ef917c86db168207f165335..d615fa38491809897a614035d314b2a2166b7b30 100644 |
--- a/chrome/installer/util/google_chrome_distribution.cc |
+++ b/chrome/installer/util/google_chrome_distribution.cc |
@@ -215,7 +215,8 @@ base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { |
sub_key.append(L"\\"); |
sub_key.append(product_guid()); |
- base::win::RegKey client_state_key(root_key, sub_key.c_str(), KEY_READ); |
+ base::win::RegKey client_state_key(root_key, sub_key.c_str(), |
+ KEY_READ | KEY_WOW64_32KEY); |
base::string16 result; |
base::string16 brand_value; |
if (client_state_key.ReadValue(google_update::kRegRLZBrandField, |