Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1030)

Unified Diff: ppapi/api/pp_errors.idl

Issue 270213004: Implement Pepper PPB_VideoDecoder interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Yuzhu's follow up comments. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/examples/pepper_container_app/resource_creation_impl.cc ('k') | ppapi/c/pp_errors.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/pp_errors.idl
diff --git a/ppapi/api/pp_errors.idl b/ppapi/api/pp_errors.idl
index 1e4e8706aa292c1048d361dd8ff4c7d98eca7f52..5630a1031be14905ae4664474ac4bfd20b68610b 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 data to the browser.
+ */
+ PP_ERROR_MALFORMED_INPUT = -14,
+ /**
+ * This value indicates that a platform failure occurred. This means that the
+ * plugin's request was valid but the browser could not complete it. Some
yzshen1 2014/05/15 00:55:30 Hmm.. I think we have a lot of cases in which plug
bbudge 2014/05/15 01:19:18 I've changed the docs. I think the unique thing ab
yzshen1 2014/05/15 17:07:22 Yes, PP_ERROR_UNRECOVERABLE_ERROR sounds easier to
+ * causes of platform failures are hardware and driver limitations, and bugs
+ * in the browser.
+ */
+ PP_ERROR_PLATFORM_FAILED = -15,
/** This value indicates failure due to a file that does not exist. */
PP_ERROR_FILENOTFOUND = -20,
« no previous file with comments | « mojo/examples/pepper_container_app/resource_creation_impl.cc ('k') | ppapi/c/pp_errors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698