| 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_COMMON_RESULT_CODES_H_ | 5 #ifndef CHROME_COMMON_RESULT_CODES_H_ |
| 6 #define CHROME_COMMON_RESULT_CODES_H_ | 6 #define CHROME_COMMON_RESULT_CODES_H_ |
| 7 | 7 |
| 8 #include "base/process_util.h" | 8 #include "base/process_util.h" |
| 9 | 9 |
| 10 // This file consolidates all the return codes for the browser and renderer | 10 // This file consolidates all the return codes for the browser and renderer |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 GOOGLE_UPDATE_LAUNCH_FAILED,// Google Update could not launch chrome DLL. | 29 GOOGLE_UPDATE_LAUNCH_FAILED,// Google Update could not launch chrome DLL. |
| 30 BAD_PROCESS_TYPE, // The process is of an unknown type. | 30 BAD_PROCESS_TYPE, // The process is of an unknown type. |
| 31 MISSING_PATH, // An critical chrome path is missing. | 31 MISSING_PATH, // An critical chrome path is missing. |
| 32 MISSING_DATA, // A critical chrome file is missing. | 32 MISSING_DATA, // A critical chrome file is missing. |
| 33 SHELL_INTEGRATION_FAILED, // Failed to make Chrome default browser. | 33 SHELL_INTEGRATION_FAILED, // Failed to make Chrome default browser. |
| 34 MACHINE_LEVEL_INSTALL_EXISTS, // Machine level install exists | 34 MACHINE_LEVEL_INSTALL_EXISTS, // Machine level install exists |
| 35 UNINSTALL_DELETE_FILE_ERROR,// Error while deleting shortcuts. | 35 UNINSTALL_DELETE_FILE_ERROR,// Error while deleting shortcuts. |
| 36 UNINSTALL_CHROME_ALIVE, // Uninstall detected another chrome instance. | 36 UNINSTALL_CHROME_ALIVE, // Uninstall detected another chrome instance. |
| 37 UNINSTALL_NO_SURVEY, // Do not launch survey after uninstall. | 37 UNINSTALL_NO_SURVEY, // Do not launch survey after uninstall. |
| 38 UNINSTALL_USER_CANCEL, // The user changed her mind. | 38 UNINSTALL_USER_CANCEL, // The user changed her mind. |
| 39 UNINSTALL_DELETE_PROFILE, // Delete profile as well during uninstall. |
| 39 UNSUPPORTED_PARAM, // Command line parameter is not supported. | 40 UNSUPPORTED_PARAM, // Command line parameter is not supported. |
| 40 KILLED_BAD_MESSAGE, // A bad message caused the process termination. | 41 KILLED_BAD_MESSAGE, // A bad message caused the process termination. |
| 41 IMPORTER_CANCEL, // The user canceled the browser import. | 42 IMPORTER_CANCEL, // The user canceled the browser import. |
| 42 IMPORTER_HUNG, // Browser import hung and was killed. | 43 IMPORTER_HUNG, // Browser import hung and was killed. |
| 43 EXIT_LAST_CODE // Last return code (keep it last). | 44 EXIT_LAST_CODE // Last return code (keep it last). |
| 44 }; | 45 }; |
| 45 }; | 46 }; |
| 46 | 47 |
| 47 #endif // CHROME_COMMON_RESULT_CODES_H_ | 48 #endif // CHROME_COMMON_RESULT_CODES_H_ |
| OLD | NEW |