diff options
Diffstat (limited to 'chrome/installer/util/work_item_list.h')
-rw-r--r-- | chrome/installer/util/work_item_list.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/chrome/installer/util/work_item_list.h b/chrome/installer/util/work_item_list.h index 30d332a..3474c34 100644 --- a/chrome/installer/util/work_item_list.h +++ b/chrome/installer/util/work_item_list.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -62,7 +62,7 @@ class WorkItemList : public WorkItem { WorkItem* AddDeleteRegValueWorkItem(HKEY predefined_root, const std::wstring& key_path, const std::wstring& value_name, - bool is_str_type); + DWORD type); // Add a DeleteTreeWorkItem that recursively deletes a file system // hierarchy at the given root path. A key file can be optionally specified @@ -94,6 +94,14 @@ class WorkItemList : public WorkItem { DWORD value_data, bool overwrite); + // Add a SetRegValueWorkItem that sets a registry value with REG_QWORD type + // at the key with specified path. + WorkItem* AddSetRegValueWorkItem(HKEY predefined_root, + const std::wstring& key_path, + const std::wstring& value_name, + int64 value_data, + bool overwrite); + // Add a SelfRegWorkItem that registers or unregisters a DLL at the // specified path. If user_level_registration is true, then alternate // registration and unregistration entry point names will be used. |