Chromium Code Reviews| Index: content/public/common/result_codes.h |
| diff --git a/content/public/common/result_codes.h b/content/public/common/result_codes.h |
| index 20cfbb87e02d9402ae03e367e79eaecfd0ba9b64..3d67d08ab9ac477d9b107302c162644a729162b2 100644 |
| --- a/content/public/common/result_codes.h |
| +++ b/content/public/common/result_codes.h |
| @@ -28,7 +28,12 @@ enum ResultCode { |
| RESULT_CODE_HUNG = 2, |
| // A bad message caused the process termination. |
| - RESULT_CODE_KILLED_BAD_MESSAGE, |
| + RESULT_CODE_KILLED_BAD_MESSAGE = 3, |
| + |
| +#if defined(OS_ANDROID) |
| + // Failed to register JNI methods. |
| + RESULT_CODE_FAILED_TO_REG_JNI = 4, |
|
Yaron
2013/01/08 00:54:22
*_REGISTER_*
michaelbai
2013/01/08 18:06:49
Done.
|
| +#endif |
| // Last return code (keep this last). |
| RESULT_CODE_LAST_CODE |