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 |
}; |
/** |