 Chromium Code Reviews
 Chromium Code Reviews Issue 270213004:
  Implement Pepper PPB_VideoDecoder interface.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 270213004:
  Implement Pepper PPB_VideoDecoder interface.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: ppapi/api/pp_errors.idl | 
| diff --git a/ppapi/api/pp_errors.idl b/ppapi/api/pp_errors.idl | 
| index 1e4e8706aa292c1048d361dd8ff4c7d98eca7f52..7267d3ac2d200454982e115d58595c2c529467dd 100644 | 
| --- a/ppapi/api/pp_errors.idl | 
| +++ b/ppapi/api/pp_errors.idl | 
| @@ -178,6 +178,15 @@ | 
| /** | 
| * 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. | 
| 
yzshen1
2014/05/14 18:08:23
- Does it make sense to consider reusing existing
 
bbudge
2014/05/14 19:35:04
I thought about both of those possibilities. PP_ER
 
yzshen1
2014/05/14 22:58:16
Okay. One thing I don't quite understand is "platf
 | 
| + */ | 
| + 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 | 
| }; |