Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ | |
| 6 #define CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ | |
| 7 | |
| 8 namespace mini_installer { | |
| 9 | |
| 10 // mini_installer process exit codes (the underlying type is uint32_t). | |
| 11 enum ExitCode { | |
| 12 SUCCESS_EXIT_CODE = 0, | |
| 13 GENERIC_ERROR = 1, | |
| 14 GENERIC_INITIALIZATION_FAILURE = 101, | |
|
gab
2014/07/07 13:45:01
Why is there a gap here? Add a comment above stati
grt (UTC plus 2)
2014/07/07 14:24:06
Done.
| |
| 15 GENERIC_UNPACKING_FAILURE = 102, | |
| 16 GENERIC_SETUP_FAILURE = 103, | |
| 17 }; | |
| 18 | |
| 19 } // namespace mini_installer | |
| 20 | |
| 21 #endif // CHROME_INSTALLER_MINI_INSTALLER_EXIT_CODE_H_ | |
| OLD | NEW |