| Index: chrome/installer/mini_installer/mini_installer.cc
|
| diff --git a/chrome/installer/mini_installer/mini_installer.cc b/chrome/installer/mini_installer/mini_installer.cc
|
| index 25b0c80413049d6618a1e153e5cb0a0460fc4ced..21208a612b4ed6448191243ceb4879c80a8a64fb 100644
|
| --- a/chrome/installer/mini_installer/mini_installer.cc
|
| +++ b/chrome/installer/mini_installer/mini_installer.cc
|
| @@ -145,7 +145,9 @@ bool OpenClientStateKey(HKEY root_key, const wchar_t* app_guid, REGSAM access,
|
| PathString client_state_key;
|
| return client_state_key.assign(kApRegistryKeyBase) &&
|
| client_state_key.append(app_guid) &&
|
| - (key->Open(root_key, client_state_key.get(), access) == ERROR_SUCCESS);
|
| + (key->Open(root_key,
|
| + client_state_key.get(),
|
| + access | KEY_WOW64_32KEY) == ERROR_SUCCESS);
|
| }
|
|
|
| // This function sets the flag in registry to indicate that Google Update
|
|
|