| Index: ppapi/c/pp_errors.h
|
| diff --git a/ppapi/c/pp_errors.h b/ppapi/c/pp_errors.h
|
| index d0411c6f70e44ef378c690263bdecacca1810444..afcd31b35b8ee56c6d0afdd42e6ff7533ffe9cb2 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 14 18:12:36 2014. */
|
|
|
| #ifndef PPAPI_C_PP_ERRORS_H_
|
| #define PPAPI_C_PP_ERRORS_H_
|
| @@ -86,6 +86,17 @@ enum {
|
| * input events, and there are reentrancy and deadlock issues).
|
| */
|
| PP_ERROR_BLOCKS_MAIN_THREAD = -13,
|
| + /**
|
| + * This value indicates that plugin sent malformed input to the browser.
|
| + */
|
| + PP_ERROR_MALFORMED_INPUT = -14,
|
| + /**
|
| + * This value indicates that a platform failure occurred. This means that the
|
| + * plugin's resource request was valid but the browser could not complete it.
|
| + * When a resource returns this error, it has become unusable and should be
|
| + * released.
|
| + */
|
| + PP_ERROR_PLATFORM_FAILED = -15,
|
| /** This value indicates failure due to a file that does not exist. */
|
| PP_ERROR_FILENOTFOUND = -20,
|
| /** This value indicates failure due to a file that already exists. */
|
|
|