| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_MINI_INSTALLER_EXIT_CODE_H_ | 5 #ifndef CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ |
| 6 #define CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ | 6 #define CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ |
| 7 | 7 |
| 8 namespace mini_installer { | 8 namespace mini_installer { |
| 9 | 9 |
| 10 // mini_installer process exit codes (the underlying type is uint32_t). | 10 // mini_installer process exit codes (the underlying type is uint32_t). |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 WAIT_FOR_PROCESS_FAILED = 107, | 24 WAIT_FOR_PROCESS_FAILED = 107, |
| 25 PATH_STRING_OVERFLOW = 108, | 25 PATH_STRING_OVERFLOW = 108, |
| 26 UNABLE_TO_GET_WORK_DIRECTORY = 109, | 26 UNABLE_TO_GET_WORK_DIRECTORY = 109, |
| 27 UNABLE_TO_FIND_REGISTRY_KEY = 110, | 27 UNABLE_TO_FIND_REGISTRY_KEY = 110, |
| 28 PATCH_NOT_FOR_INSTALLED_VERSION = 111, | 28 PATCH_NOT_FOR_INSTALLED_VERSION = 111, |
| 29 UNABLE_TO_EXTRACT_CHROME_ARCHIVE = 112, | 29 UNABLE_TO_EXTRACT_CHROME_ARCHIVE = 112, |
| 30 UNABLE_TO_EXTRACT_SETUP_B7 = 113, | 30 UNABLE_TO_EXTRACT_SETUP_B7 = 113, |
| 31 UNABLE_TO_EXTRACT_SETUP_BN = 114, | 31 UNABLE_TO_EXTRACT_SETUP_BN = 114, |
| 32 UNABLE_TO_EXTRACT_SETUP_EXE = 115, | 32 UNABLE_TO_EXTRACT_SETUP_EXE = 115, |
| 33 UNABLE_TO_EXTRACT_SETUP = 116, | 33 UNABLE_TO_EXTRACT_SETUP = 116, |
| 34 UNABLE_TO_SET_DIRECTORY_ACL = 117, |
| 34 }; | 35 }; |
| 35 | 36 |
| 36 } // namespace mini_installer | 37 } // namespace mini_installer |
| 37 | 38 |
| 38 #endif // CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ | 39 #endif // CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ |
| OLD | NEW |