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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 11013052: Add PPAPI CDM video decoder initialization. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 ppapi::proxy::SerializedVar /* session_id, String */, 620 ppapi::proxy::SerializedVar /* session_id, String */,
621 ppapi::proxy::SerializedVar /* key, ArrayBuffer */, 621 ppapi::proxy::SerializedVar /* key, ArrayBuffer */,
622 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) 622 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */)
623 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest, 623 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_CancelKeyRequest,
624 PP_Instance /* instance */, 624 PP_Instance /* instance */,
625 ppapi::proxy::SerializedVar /* session_id, String */) 625 ppapi::proxy::SerializedVar /* session_id, String */)
626 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, 626 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt,
627 PP_Instance /* instance */, 627 PP_Instance /* instance */,
628 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 628 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
629 std::string /* serialized_block_info */) 629 std::string /* serialized_block_info */)
630 IPC_MESSAGE_ROUTED3(
631 PpapiMsg_PPPContentDecryptor_InitializeVideoDecoder,
632 PP_Instance /* instance */,
633 std::string /* serialized_decoder_config */,
634 ppapi::proxy::PPPDecryptor_Buffer /* extra_data_buffer. */)
630 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecodeFrame, 635 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecodeFrame,
631 PP_Instance /* instance */, 636 PP_Instance /* instance */,
632 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 637 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
633 std::string /* serialized_block_info */) 638 std::string /* serialized_block_info */)
634 639
635 // PPB_Talk 640 // PPB_Talk
636 IPC_MESSAGE_ROUTED3( 641 IPC_MESSAGE_ROUTED3(
637 PpapiMsg_PPBTalk_GetPermissionACK, 642 PpapiMsg_PPBTalk_GetPermissionACK,
638 uint32 /* plugin_dispatcher_id */, 643 uint32 /* plugin_dispatcher_id */,
639 PP_Resource /* resource */, 644 PP_Resource /* resource */,
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1205 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_KeyError, 1210 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBInstance_KeyError,
1206 PP_Instance /* instance */, 1211 PP_Instance /* instance */,
1207 ppapi::proxy::SerializedVar /* key_system, String */, 1212 ppapi::proxy::SerializedVar /* key_system, String */,
1208 ppapi::proxy::SerializedVar /* session_id, String */, 1213 ppapi::proxy::SerializedVar /* session_id, String */,
1209 int32_t /* media_error */, 1214 int32_t /* media_error */,
1210 int32_t /* system_code */) 1215 int32_t /* system_code */)
1211 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverBlock, 1216 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverBlock,
1212 PP_Instance /* instance */, 1217 PP_Instance /* instance */,
1213 PP_Resource /* decrypted_block, PPB_Buffer_Dev */, 1218 PP_Resource /* decrypted_block, PPB_Buffer_Dev */,
1214 std::string /* serialized_block_info */) 1219 std::string /* serialized_block_info */)
1220 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DecoderInitialized,
1221 PP_Instance /* instance */,
1222 PP_Bool /* success */,
1223 uint32_t /* request_id */)
1215 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverFrame, 1224 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverFrame,
1216 PP_Instance /* instance */, 1225 PP_Instance /* instance */,
1217 PP_Resource /* decrypted_frame, PPB_Buffer_Dev */, 1226 PP_Resource /* decrypted_frame, PPB_Buffer_Dev */,
1218 std::string /* serialized_block_info */) 1227 std::string /* serialized_block_info */)
1219 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverSamples, 1228 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverSamples,
1220 PP_Instance /* instance */, 1229 PP_Instance /* instance */,
1221 PP_Resource /* decrypted_samples, PPB_Buffer_Dev */, 1230 PP_Resource /* decrypted_samples, PPB_Buffer_Dev */,
1222 std::string /* serialized_block_info */) 1231 std::string /* serialized_block_info */)
1223 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1232 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
1224 1233
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1676 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, 1685 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply,
1677 std::string /* output */) 1686 std::string /* output */)
1678 1687
1679 // Flash functions. 1688 // Flash functions.
1680 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create) 1689 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create)
1681 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_EnumerateVideoCaptureDevices, 1690 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_EnumerateVideoCaptureDevices,
1682 ppapi::HostResource /* video_capture */) 1691 ppapi::HostResource /* video_capture */)
1683 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_EnumerateVideoCaptureDevicesReply, 1692 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_EnumerateVideoCaptureDevicesReply,
1684 std::vector<ppapi::DeviceRefData> /* devices */) 1693 std::vector<ppapi::DeviceRefData> /* devices */)
1685 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1694 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/proxy/ppb_instance_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698