| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 71 // The browser process exited early by passing the command line to another |
| 72 // running browser. | 72 // running browser. |
| 73 RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED, | 73 RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED, |
| 74 | 74 |
| 75 // Failed to install an item from the webstore when the kInstallFromWebstore | 75 // Failed to install an item from the webstore when the kInstallFromWebstore |
| 76 // command line flag was present. | 76 // command line flag was present. |
| 77 RESULT_CODE_INSTALL_FROM_WEBSTORE_ERROR, | 77 RESULT_CODE_INSTALL_FROM_WEBSTORE_ERROR, |
| 78 | 78 |
| 79 // Returned when the user has not yet accepted the EULA. |
| 80 RESULT_CODE_EULA_REFUSED, |
| 81 |
| 79 // Last return code (keep this last). | 82 // Last return code (keep this last). |
| 80 RESULT_CODE_CHROME_LAST_CODE, | 83 RESULT_CODE_CHROME_LAST_CODE, |
| 81 }; | 84 }; |
| 82 | 85 |
| 83 } // namespace chrome | 86 } // namespace chrome |
| 84 | 87 |
| 85 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ | 88 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ |
| OLD | NEW |