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

Unified Diff: chrome/installer/util/copy_reg_key_work_item.h

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/copy_reg_key_work_item.h
diff --git a/chrome/installer/util/copy_reg_key_work_item.h b/chrome/installer/util/copy_reg_key_work_item.h
index 7a84b63cb62b37d1693e21fb1fe1173f47371e94..9d65ff4ba3a531bdfbf5598b339c32689954602a 100644
--- a/chrome/installer/util/copy_reg_key_work_item.h
+++ b/chrome/installer/util/copy_reg_key_work_item.h
@@ -33,7 +33,8 @@ class CopyRegKeyWorkItem : public WorkItem {
CopyRegKeyWorkItem(HKEY predefined_key,
const std::wstring& source_key_path,
const std::wstring& dest_key_path,
- CopyOverWriteOption overwrite_option);
+ CopyOverWriteOption overwrite_option,
+ RegWow64ViewOption reg_wow64_option);
// Root key in which we operate. The root key must be one of the predefined
// keys on Windows.
@@ -48,6 +49,9 @@ class CopyRegKeyWorkItem : public WorkItem {
// WorkItem::ALWAYS or WorkItem::IF_NOT_PRESENT.
CopyOverWriteOption overwrite_option_;
+ // Whether to force 32-bit or 64-bit view of the target key.
+ RegWow64ViewOption reg_wow64_option_;
+
// Backup of the destination key.
RegistryKeyBackup backup_;

Powered by Google App Engine
This is Rietveld 408576698