diff options
Diffstat (limited to 'chrome/installer/util/install_util.h')
-rw-r--r-- | chrome/installer/util/install_util.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/installer/util/install_util.h b/chrome/installer/util/install_util.h index 0622985..2e5e405 100644 --- a/chrome/installer/util/install_util.h +++ b/chrome/installer/util/install_util.h @@ -18,6 +18,7 @@ #include "chrome/installer/util/version.h" class WorkItemList; +class RegKey; // This is a utility class that provides common installation related // utility methods that can be used by installer and also unit tested @@ -99,6 +100,14 @@ class InstallUtil { bool do_register, WorkItemList* registration_list); + // Deletes the registry key at path key_path under the key given by root_key. + static bool DeleteRegistryKey(RegKey& root_key, const std::wstring& key_path); + + // Deletes the registry value named value_name at path key_path under the key + // given by reg_root. + static bool DeleteRegistryValue(HKEY reg_root, const std::wstring& key_path, + const std::wstring& value_name); + private: DISALLOW_COPY_AND_ASSIGN(InstallUtil); }; |