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

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

Issue 11087044: Generalize Pepper CDM API decrypt and decode. (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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 std::string /* serialized_decoder_config */, 635 std::string /* serialized_decoder_config */,
636 ppapi::proxy::PPPDecryptor_Buffer /* extra_data_buffer. */) 636 ppapi::proxy::PPPDecryptor_Buffer /* extra_data_buffer. */)
637 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DeinitializeDecoder, 637 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DeinitializeDecoder,
638 PP_Instance /* instance */, 638 PP_Instance /* instance */,
639 PP_DecryptorStreamType /* decoder_type */, 639 PP_DecryptorStreamType /* decoder_type */,
640 uint32_t /* request_id */) 640 uint32_t /* request_id */)
641 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_ResetDecoder, 641 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_ResetDecoder,
642 PP_Instance /* instance */, 642 PP_Instance /* instance */,
643 PP_DecryptorStreamType /* decoder_type */, 643 PP_DecryptorStreamType /* decoder_type */,
644 uint32_t /* request_id */) 644 uint32_t /* request_id */)
645 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_DecryptAndDecodeFrame, 645 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_DecryptAndDecode,
646 PP_Instance /* instance */, 646 PP_Instance /* instance */,
647 PP_DecryptorStreamType /* decoder_type */,
647 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, 648 ppapi::proxy::PPPDecryptor_Buffer /* buffer */,
648 std::string /* serialized_block_info */) 649 std::string /* serialized_block_info */)
649 650
650 // PPB_Talk 651 // PPB_Talk
651 IPC_MESSAGE_ROUTED3( 652 IPC_MESSAGE_ROUTED3(
652 PpapiMsg_PPBTalk_GetPermissionACK, 653 PpapiMsg_PPBTalk_GetPermissionACK,
653 uint32 /* plugin_dispatcher_id */, 654 uint32 /* plugin_dispatcher_id */,
654 PP_Resource /* resource */, 655 PP_Resource /* resource */,
655 int32_t /* result */) 656 int32_t /* result */)
656 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 657 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1703 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, 1704 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply,
1704 std::string /* output */) 1705 std::string /* output */)
1705 1706
1706 // Flash functions. 1707 // Flash functions.
1707 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create) 1708 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create)
1708 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_EnumerateVideoCaptureDevices, 1709 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_EnumerateVideoCaptureDevices,
1709 ppapi::HostResource /* video_capture */) 1710 ppapi::HostResource /* video_capture */)
1710 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_EnumerateVideoCaptureDevicesReply, 1711 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_EnumerateVideoCaptureDevicesReply,
1711 std::vector<ppapi::DeviceRefData> /* devices */) 1712 std::vector<ppapi::DeviceRefData> /* devices */)
1712 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1713 #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/ppp_content_decryptor_private_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698