| Index: chrome/installer/util/shell_util.cc
|
| ===================================================================
|
| --- chrome/installer/util/shell_util.cc (revision 273136)
|
| +++ chrome/installer/util/shell_util.cc (working copy)
|
| @@ -712,9 +712,7 @@
|
| if (!base::PathExists(exe_path)) {
|
| HKEY reg_root = InstallUtil::IsPerUserInstall(chrome_exe.c_str()) ?
|
| HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE;
|
| - RegKey key(reg_root,
|
| - dist->GetUninstallRegPath().c_str(),
|
| - KEY_READ | KEY_WOW64_32KEY);
|
| + RegKey key(reg_root, dist->GetUninstallRegPath().c_str(), KEY_READ);
|
| base::string16 uninstall_string;
|
| key.ReadValue(installer::kUninstallStringField, &uninstall_string);
|
| CommandLine command_line = CommandLine::FromString(uninstall_string);
|
|
|