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

Unified Diff: ppapi/api/private/pp_content_decryptor.idl

Issue 1050823009: Handle all possible cdm::Status values before passing through Pepper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
Index: ppapi/api/private/pp_content_decryptor.idl
diff --git a/ppapi/api/private/pp_content_decryptor.idl b/ppapi/api/private/pp_content_decryptor.idl
index e5f92da10dce06f5fc80ab2540af0b8299ba1212..d736fe651673856fa9671ed0ea7370f23c0fc6ed 100644
--- a/ppapi/api/private/pp_content_decryptor.idl
+++ b/ppapi/api/private/pp_content_decryptor.idl
@@ -157,7 +157,11 @@ enum PP_DecryptResult {
/** An unexpected error happened during decryption. */
PP_DECRYPTRESULT_DECRYPT_ERROR = 3,
/** An unexpected error happened during decoding. */
- PP_DECRYPTRESULT_DECODE_ERROR = 4
+ PP_DECRYPTRESULT_DECODE_ERROR = 4,
+ /** Session management error. */
ddorwin 2015/04/23 00:33:42 I don't think we need these.
+ PP_DECRYPTRESULT_SESSION_ERROR = 5,
+ /** Decoder is not ready for initialization. */
+ PP_DECRYPTRESULT_DEFERRED_INITIALIZATION = 6
};
/**

Powered by Google App Engine
This is Rietveld 408576698