| Index: ppapi/api/pp_errors.idl
|
| diff --git a/ppapi/api/pp_errors.idl b/ppapi/api/pp_errors.idl
|
| index 1e4e8706aa292c1048d361dd8ff4c7d98eca7f52..2d958ecaeeb0d4c9e5bd22b7880e5b38fd0f9b50 100644
|
| --- a/ppapi/api/pp_errors.idl
|
| +++ b/ppapi/api/pp_errors.idl
|
| @@ -85,6 +85,17 @@
|
| * input events, and there are reentrancy and deadlock issues).
|
| */
|
| PP_ERROR_BLOCKS_MAIN_THREAD = -13,
|
| + /**
|
| + * This value indicates that the plugin sent bad input data to a resource,
|
| + * leaving it in an invalid state. The resource can't be used after returning
|
| + * this error and should be released.
|
| + */
|
| + PP_ERROR_MALFORMED_INPUT = -14,
|
| + /**
|
| + * This value indicates that a resource has failed. The resource can't be
|
| + * used after returning this error and should be released.
|
| + */
|
| + PP_ERROR_RESOURCE_FAILED = -15,
|
|
|
| /** This value indicates failure due to a file that does not exist. */
|
| PP_ERROR_FILENOTFOUND = -20,
|
| @@ -129,6 +140,7 @@
|
| * thread.
|
| */
|
| PP_ERROR_WRONG_THREAD = -52,
|
| +
|
| /**
|
| * This value indicates that the connection was closed. For TCP sockets, it
|
| * corresponds to a TCP FIN.
|
|
|