Chromium Code Reviews| Index: chrome/installer/setup/uninstall.cc |
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc |
| index 353e3900539c46ef194c31c59db507ddbe22c1f6..d23d6528bc985c9e4a9c4b4da5ef092426e9ce01 100644 |
| --- a/chrome/installer/setup/uninstall.cc |
| +++ b/chrome/installer/setup/uninstall.cc |
| @@ -46,6 +46,7 @@ |
| #include "chrome/installer/util/self_cleaning_temp_dir.h" |
| #include "chrome/installer/util/shell_util.h" |
| #include "chrome/installer/util/util_constants.h" |
| +#include "chrome/installer/util/work_item.h" |
| #include "content/public/common/result_codes.h" |
| #include "rlz/lib/rlz_lib.h" |
| @@ -95,7 +96,8 @@ void AddChannelValueUpdateWorkItems( |
| BrowserDistribution* other_dist = |
| BrowserDistribution::GetSpecificDistribution(dist_type); |
| update_list->AddSetRegValueWorkItem(reg_root, other_dist->GetStateKey(), |
| - google_update::kRegApField, channel_info.value(), true); |
| + google_update::kRegApField, channel_info.value(), |
| + true, WorkItem::WOW64_DEFAULT); |
|
Will Harris
2014/05/16 17:29:07
this looks like it should be WOW64_32 as it access
|
| } else { |
| LOG_IF(ERROR, |
| product_state != NULL && product_state->is_multi_install()) |