diff options
Diffstat (limited to 'chrome/installer/util/work_item_list.h')
-rw-r--r-- | chrome/installer/util/work_item_list.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/installer/util/work_item_list.h b/chrome/installer/util/work_item_list.h index 5d1b071..227533c 100644 --- a/chrome/installer/util/work_item_list.h +++ b/chrome/installer/util/work_item_list.h @@ -44,6 +44,11 @@ class WorkItemList : public WorkItem { // path. bool AddCreateRegKeyWorkItem(HKEY predefined_root, std::wstring path); + // Add a DeleteRegValueWorkItem that deletes registry value of type REG_SZ + // or REG_DWORD. + bool AddDeleteRegValueWorkItem(HKEY predefined_root, std::wstring key_path, + std::wstring value_name, bool it_str_type); + // Add a DeleteTreeWorkItem that recursively deletes a file system // hierarchy at the given root path. A key file can be optionally specified // by key_path. |