| Index: ppapi/api/pp_errors.idl
|
| diff --git a/ppapi/api/pp_errors.idl b/ppapi/api/pp_errors.idl
|
| index 1e4e8706aa292c1048d361dd8ff4c7d98eca7f52..a7229245379f6cab7c5d5e8c98361aff712d5a3b 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 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,
|
|
|