| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "content/common/result_codes.h" | 9 #include "content/public/common/result_codes.h" |
| 10 | 10 |
| 11 namespace chrome { | 11 namespace chrome { |
| 12 | 12 |
| 13 enum ResultCode { | 13 enum ResultCode { |
| 14 RESULT_CODE_CHROME_START = content::RESULT_CODE_LAST_CODE, | 14 RESULT_CODE_CHROME_START = content::RESULT_CODE_LAST_CODE, |
| 15 | 15 |
| 16 // An invalid command line url was given. | 16 // An invalid command line url was given. |
| 17 RESULT_CODE_INVALID_CMDLINE_URL = RESULT_CODE_CHROME_START, | 17 RESULT_CODE_INVALID_CMDLINE_URL = RESULT_CODE_CHROME_START, |
| 18 | 18 |
| 19 // The process is of an unknown type. | 19 // The process is of an unknown type. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 // Failed to silently uninstall an extension. | 69 // Failed to silently uninstall an extension. |
| 70 RESULT_CODE_UNINSTALL_EXTENSION_ERROR, | 70 RESULT_CODE_UNINSTALL_EXTENSION_ERROR, |
| 71 | 71 |
| 72 // Last return code (keep this last). | 72 // Last return code (keep this last). |
| 73 RESULT_CODE_CHROME_LAST_CODE, | 73 RESULT_CODE_CHROME_LAST_CODE, |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace chrome | 76 } // namespace chrome |
| 77 | 77 |
| 78 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ | 78 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ |
| OLD | NEW |