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

Unified Diff: chrome/installer/util/delete_reg_key_work_item.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/util/delete_reg_key_work_item.cc
diff --git a/chrome/installer/util/delete_reg_key_work_item.cc b/chrome/installer/util/delete_reg_key_work_item.cc
index 462698f44bc91ec6b84f446121d60668f291b33b..7efcfb7a6501406640b2788daeeb809ce25e993e 100644
--- a/chrome/installer/util/delete_reg_key_work_item.cc
+++ b/chrome/installer/util/delete_reg_key_work_item.cc
@@ -15,9 +15,11 @@ DeleteRegKeyWorkItem::~DeleteRegKeyWorkItem() {
}
DeleteRegKeyWorkItem::DeleteRegKeyWorkItem(HKEY predefined_root,
- const std::wstring& path)
+ const std::wstring& path,
+ RegWow64ViewOption reg_wow64_option)
: predefined_root_(predefined_root),
- path_(path) {
+ path_(path),
+ reg_wow64_option_(reg_wow64_option) {
DCHECK(predefined_root);
// It's a safe bet that we don't want to delete one of the root trees.
DCHECK(!path.empty());

Powered by Google App Engine
This is Rietveld 408576698