Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index 8ac08863f259be2ea620d0b02120d4302ba24e45..ce50457e80fddc4962070216143a1704f983d937 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -31,6 +31,7 @@ |
| #include "ppapi/c/pp_resource.h" |
| #include "ppapi/c/pp_size.h" |
| #include "ppapi/c/pp_time.h" |
| +#include "ppapi/c/private/pp_content_decryptor.h" |
| #include "ppapi/c/private/ppb_flash.h" |
| #include "ppapi/c/private/ppb_host_resolver_private.h" |
| #include "ppapi/c/private/ppb_net_address_private.h" |
| @@ -70,6 +71,7 @@ IPC_ENUM_TRAITS(PP_PrintOrientation_Dev) |
| IPC_ENUM_TRAITS(PP_PrintOutputFormat_Dev) |
| IPC_ENUM_TRAITS(PP_PrintScalingOption_Dev) |
| IPC_ENUM_TRAITS(PP_TextInput_Type) |
| +IPC_ENUM_TRAITS(PP_StreamType) |
| IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev) |
| IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) |
| @@ -624,10 +626,11 @@ IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, |
| PP_Instance /* instance */, |
| ppapi::proxy::PPPDecryptor_Buffer /* buffer */, |
| std::string /* serialized_block_info */) |
| -IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecodeFrame, |
| +IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_DecryptAndDecode, |
| PP_Instance /* instance */, |
| + PP_StreamType /* decoder_type */, |
| ppapi::proxy::PPPDecryptor_Buffer /* buffer */, |
| - std::string /* serialized_block_info */) |
| + std::string /* serialized_encrypted_media_info */) |
|
xhwang
2012/10/10 23:52:33
why not serialized_block_info?
Tom Finegan
2012/10/11 00:11:33
Missed it, thanks!
|
| // PPB_Talk |
| IPC_MESSAGE_ROUTED3( |