| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CHROME_RESULT_CODES_H_ | 5 #ifndef CHROME_COMMON_CHROME_RESULT_CODES_H_ |
| 6 #define CHROME_COMMON_CHROME_RESULT_CODES_H_ | 6 #define CHROME_COMMON_CHROME_RESULT_CODES_H_ |
| 7 | 7 |
| 8 #include "content/public/common/result_codes.h" | 8 #include "content/public/common/result_codes.h" |
| 9 | 9 |
| 10 namespace chrome { | 10 namespace chrome { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 // The profile was in use on another host. | 62 // The profile was in use on another host. |
| 63 RESULT_CODE_PROFILE_IN_USE, | 63 RESULT_CODE_PROFILE_IN_USE, |
| 64 | 64 |
| 65 // Failed to pack an extension via the cmd line. | 65 // Failed to pack an extension via the cmd line. |
| 66 RESULT_CODE_PACK_EXTENSION_ERROR, | 66 RESULT_CODE_PACK_EXTENSION_ERROR, |
| 67 | 67 |
| 68 // Failed to silently uninstall an extension. | 68 // Failed to silently uninstall an extension. |
| 69 RESULT_CODE_UNINSTALL_EXTENSION_ERROR, | 69 RESULT_CODE_UNINSTALL_EXTENSION_ERROR, |
| 70 | 70 |
| 71 // The browser process exited early by passing the command line to another |
| 72 // running browser. |
| 73 RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED, |
| 74 |
| 71 // Last return code (keep this last). | 75 // Last return code (keep this last). |
| 72 RESULT_CODE_CHROME_LAST_CODE, | 76 RESULT_CODE_CHROME_LAST_CODE, |
| 73 }; | 77 }; |
| 74 | 78 |
| 75 } // namespace chrome | 79 } // namespace chrome |
| 76 | 80 |
| 77 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ | 81 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ |
| OLD | NEW |