| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ | 5 #ifndef CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ |
| 6 #define CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ | 6 #define CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <windows.h> | 9 #include <windows.h> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 // The path to the dll to be registered. | 42 // The path to the dll to be registered. |
| 43 std::wstring dll_path_; | 43 std::wstring dll_path_; |
| 44 | 44 |
| 45 // Whether this work item will register or unregister the dll. The rollback | 45 // Whether this work item will register or unregister the dll. The rollback |
| 46 // action just inverts this parameter. | 46 // action just inverts this parameter. |
| 47 bool do_register_; | 47 bool do_register_; |
| 48 | 48 |
| 49 // Whether to use alternate export names on the DLL that will perform | 49 // Whether to use alternate export names on the DLL that will perform |
| 50 // user level registration. | 50 // user level registration. |
| 51 bool user_level_registration_; | 51 bool user_level_registration_; |
| 52 | |
| 53 // Specifies whether this work item my fail to complete and yet still | |
| 54 // return true from Do(). Use this when making a best effort at unregistering | |
| 55 // old Dlls. | |
| 56 bool ignore_failure_; | |
| 57 }; | 52 }; |
| 58 | 53 |
| 59 #endif // CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ | 54 #endif // CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ |
| OLD | NEW |