| Index: ppapi/c/pp_errors.h | 
| diff --git a/ppapi/c/pp_errors.h b/ppapi/c/pp_errors.h | 
| index d0411c6f70e44ef378c690263bdecacca1810444..5a0030931b394d3f080b0c77923925e9cde31248 100644 | 
| --- a/ppapi/c/pp_errors.h | 
| +++ b/ppapi/c/pp_errors.h | 
| @@ -3,7 +3,7 @@ | 
| * found in the LICENSE file. | 
| */ | 
|  | 
| -/* From pp_errors.idl modified Thu Jun 13 13:02:05 2013. */ | 
| +/* From pp_errors.idl modified Wed May  7 18:10:40 2014. */ | 
|  | 
| #ifndef PPAPI_C_PP_ERRORS_H_ | 
| #define PPAPI_C_PP_ERRORS_H_ | 
| @@ -178,7 +178,16 @@ enum { | 
| /** | 
| * This value indicates that the host name could not be resolved. | 
| */ | 
| -  PP_ERROR_NAME_NOT_RESOLVED = -110 | 
| +  PP_ERROR_NAME_NOT_RESOLVED = -110, | 
| +  /** | 
| +   * This value indicates that plugin passed bad input data to the browser. | 
| +   */ | 
| +  PP_ERROR_UNREADABLE_INPUT = -111, | 
| +  /** | 
| +   * This value indicates that a platform failure occurred. This indicates that | 
| +   * the browser could not complete a valid request from the plugin. | 
| +   */ | 
| +  PP_ERROR_PLATFORM_FAILED = -112 | 
| }; | 
| /** | 
| * @} | 
|  |