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

Unified Diff: chrome/installer/setup/uninstall.cc

Issue 282363003: Add WOW64 support to the installer registry work items (Closed) Base URL: https://chromium.googlesource.com/chromium/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
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())

Powered by Google App Engine
This is Rietveld 408576698