diff options
author | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-12 05:25:00 +0000 |
---|---|---|
committer | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-12 05:25:00 +0000 |
commit | a6e4fbfd6c6848be53e04bcd11b097df8399064d (patch) | |
tree | 5d2b2b23e3546d06a84aaf05a77492c469a00a6e /ppapi/api | |
parent | 0d2bd8b4c40f047a5c7e8163efd5ca87a9c34094 (diff) | |
download | chromium_src-a6e4fbfd6c6848be53e04bcd11b097df8399064d.zip chromium_src-a6e4fbfd6c6848be53e04bcd11b097df8399064d.tar.gz chromium_src-a6e4fbfd6c6848be53e04bcd11b097df8399064d.tar.bz2 |
Change PPB_ContentDecryptor_Private::KeyMessage to pass the message as a PP_Var instead of a PP_Resource.
BUG=164498
TEST=EME decrypt and decode continues to work.
Review URL: https://chromiumcodereview.appspot.com/11442029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172534 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/private/ppb_content_decryptor_private.idl | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ppapi/api/private/ppb_content_decryptor_private.idl b/ppapi/api/private/ppb_content_decryptor_private.idl index 6b3dc85..36dbb53 100644 --- a/ppapi/api/private/ppb_content_decryptor_private.idl +++ b/ppapi/api/private/ppb_content_decryptor_private.idl @@ -40,7 +40,7 @@ interface PPB_ContentDecryptor_Private { * <code>PP_VARTYPE_STRING</code> containing the session ID. * * @param[in] init_data A <code>PP_Var</code> of type - * <code>PP_VARTYPE_ARRAYBUFFER</code> containing container-specific + * <code>PP_VARTYPE_ARRAY_BUFFER</code> containing container-specific * initialization data. */ void NeedKey( @@ -93,9 +93,8 @@ interface PPB_ContentDecryptor_Private { * @param[in] session_id A <code>PP_Var</code> of type * <code>PP_VARTYPE_STRING</code> containing the session ID. * - * @param[in] resource A <code>PP_Resource</code> corresponding to a - * <code>PPB_Buffer_Dev</code> resource that contains the message. A 0 - * resource is allowed which indicates an empty message. + * @param[in] message A <code>PP_Var</code> of type + * <code>PP_VARTYPE_ARRAY_BUFFER</code> that contains the message. * * @param[in] default_url A <code>PP_Var</code> of type * <code>PP_VARTYPE_STRING</code> containing the default URL for the message. @@ -104,7 +103,7 @@ interface PPB_ContentDecryptor_Private { [in] PP_Instance instance, [in] PP_Var key_system, [in] PP_Var session_id, - [in] PP_Resource message, + [in] PP_Var message, [in] PP_Var default_url); /** |