| Index: ppapi/proxy/ppapi_messages.h
|
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h
|
| index 9afdcbc10e3ee7420eb35aad78ef56cc0b5b4461..4b13afbbff6d964aab51c54445f041febafe41cb 100644
|
| --- a/ppapi/proxy/ppapi_messages.h
|
| +++ b/ppapi/proxy/ppapi_messages.h
|
| @@ -757,6 +757,10 @@ IPC_MESSAGE_ROUTED3(
|
| IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize,
|
| PP_Instance /* instance */,
|
| ppapi::proxy::SerializedVar /* key_system, String */)
|
| +IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_SetServerCertificate,
|
| + PP_Instance /* instance */,
|
| + uint32_t /* promise_id */,
|
| + ppapi::proxy::SerializedVar /* certificate, ArrayBuffer */)
|
| IPC_MESSAGE_ROUTED5(PpapiMsg_PPPContentDecryptor_CreateSession,
|
| PP_Instance /* instance */,
|
| uint32_t /* promise_id */,
|
| @@ -772,7 +776,15 @@ IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_UpdateSession,
|
| uint32_t /* promise_id */,
|
| ppapi::proxy::SerializedVar /* web_session_id, String */,
|
| ppapi::proxy::SerializedVar /* response, ArrayBuffer */)
|
| -IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_ReleaseSession,
|
| +IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_CloseSession,
|
| + PP_Instance /* instance */,
|
| + uint32_t /* promise_id */,
|
| + ppapi::proxy::SerializedVar /* web_session_id, String */)
|
| +IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_RemoveSession,
|
| + PP_Instance /* instance */,
|
| + uint32_t /* promise_id */,
|
| + ppapi::proxy::SerializedVar /* web_session_id, String */)
|
| +IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_GetUsableKeyIds,
|
| PP_Instance /* instance */,
|
| uint32_t /* promise_id */,
|
| ppapi::proxy::SerializedVar /* web_session_id, String */)
|
| @@ -1092,6 +1104,10 @@ IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_PromiseResolvedWithSession,
|
| PP_Instance /* instance */,
|
| uint32_t /* promise_id */,
|
| ppapi::proxy::SerializedVar /* web_session_id, String */)
|
| +IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_PromiseResolvedWithKeyIds,
|
| + PP_Instance /* instance */,
|
| + uint32_t /* promise_id */,
|
| + ppapi::proxy::SerializedVar /* key_ids, Array */)
|
| IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_PromiseRejected,
|
| PP_Instance /* instance */,
|
| uint32_t /* promise_id */,
|
| @@ -1103,6 +1119,14 @@ IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionMessage,
|
| ppapi::proxy::SerializedVar /* web_session_id, String */,
|
| ppapi::proxy::SerializedVar /* message, ArrayBuffer */,
|
| ppapi::proxy::SerializedVar /* destination_url, String */)
|
| +IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_SessionKeysChange,
|
| + PP_Instance /* instance */,
|
| + ppapi::proxy::SerializedVar /* web_session_id, String */,
|
| + PP_Bool /* has_additional_usable_key */)
|
| +IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_SessionExpirationChange,
|
| + PP_Instance /* instance */,
|
| + ppapi::proxy::SerializedVar /* web_session_id, String */,
|
| + PP_Time /* new_expiry_time */)
|
| IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionReady,
|
| PP_Instance /* instance */,
|
| ppapi::proxy::SerializedVar /* web_session_id, String */)
|
|
|