OLD | NEW |
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/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 ppapi::HostResource /* broker */, | 643 ppapi::HostResource /* broker */, |
644 IPC::PlatformFileForTransit /* handle */, | 644 IPC::PlatformFileForTransit /* handle */, |
645 int32_t /* result */) | 645 int32_t /* result */) |
646 | 646 |
647 // PPP_ContentDecryptor_Dev | 647 // PPP_ContentDecryptor_Dev |
648 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize, | 648 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize, |
649 PP_Instance /* instance */, | 649 PP_Instance /* instance */, |
650 ppapi::proxy::SerializedVar /* key_system, String */) | 650 ppapi::proxy::SerializedVar /* key_system, String */) |
651 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_CreateSession, | 651 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_CreateSession, |
652 PP_Instance /* instance */, | 652 PP_Instance /* instance */, |
653 uint32_t /* reference_id */, | 653 uint32_t /* session_id */, |
654 ppapi::proxy::SerializedVar /* type, String */, | 654 ppapi::proxy::SerializedVar /* type, String */, |
655 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) | 655 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) |
656 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_UpdateSession, | 656 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_UpdateSession, |
657 PP_Instance /* instance */, | 657 PP_Instance /* instance */, |
658 uint32_t /* reference_id */, | 658 uint32_t /* session_id */, |
659 ppapi::proxy::SerializedVar /* response, ArrayBuffer */) | 659 ppapi::proxy::SerializedVar /* response, ArrayBuffer */) |
660 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_ReleaseSession, | 660 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_ReleaseSession, |
661 PP_Instance /* instance */, | 661 PP_Instance /* instance */, |
662 uint32_t /* reference_id */) | 662 uint32_t /* session_id */) |
663 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, | 663 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, |
664 PP_Instance /* instance */, | 664 PP_Instance /* instance */, |
665 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, | 665 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, |
666 std::string /* serialized_block_info */) | 666 std::string /* serialized_block_info */) |
667 IPC_MESSAGE_ROUTED3( | 667 IPC_MESSAGE_ROUTED3( |
668 PpapiMsg_PPPContentDecryptor_InitializeAudioDecoder, | 668 PpapiMsg_PPPContentDecryptor_InitializeAudioDecoder, |
669 PP_Instance /* instance */, | 669 PP_Instance /* instance */, |
670 std::string /* serialized_decoder_config */, | 670 std::string /* serialized_decoder_config */, |
671 ppapi::proxy::PPPDecryptor_Buffer /* extra_data_buffer */) | 671 ppapi::proxy::PPPDecryptor_Buffer /* extra_data_buffer */) |
672 IPC_MESSAGE_ROUTED3( | 672 IPC_MESSAGE_ROUTED3( |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 IPC_SYNC_MESSAGE_ROUTED2_2( | 977 IPC_SYNC_MESSAGE_ROUTED2_2( |
978 PpapiHostMsg_PPBBuffer_Create, | 978 PpapiHostMsg_PPBBuffer_Create, |
979 PP_Instance /* instance */, | 979 PP_Instance /* instance */, |
980 uint32_t /* size */, | 980 uint32_t /* size */, |
981 ppapi::HostResource /* result_resource */, | 981 ppapi::HostResource /* result_resource */, |
982 ppapi::proxy::SerializedHandle /* result_shm_handle */) | 982 ppapi::proxy::SerializedHandle /* result_shm_handle */) |
983 | 983 |
984 // PPB_ContentDecryptor_Dev messages handled in PPB_Instance_Proxy. | 984 // PPB_ContentDecryptor_Dev messages handled in PPB_Instance_Proxy. |
985 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_SessionCreated, | 985 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_SessionCreated, |
986 PP_Instance /* instance */, | 986 PP_Instance /* instance */, |
987 uint32_t /* reference_id */, | 987 uint32_t /* session_id */, |
988 ppapi::proxy::SerializedVar /* session_id, String */) | 988 ppapi::proxy::SerializedVar /* web_session_id, String */) |
989 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionMessage, | 989 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionMessage, |
990 PP_Instance /* instance */, | 990 PP_Instance /* instance */, |
991 uint32_t /* reference_id */, | 991 uint32_t /* session_id */, |
992 ppapi::proxy::SerializedVar /* message, ArrayBuffer */, | 992 ppapi::proxy::SerializedVar /* message, ArrayBuffer */, |
993 ppapi::proxy::SerializedVar /* destination_url, String */) | 993 ppapi::proxy::SerializedVar /* destination_url, String */) |
994 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionReady, | 994 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionReady, |
995 PP_Instance /* instance */, | 995 PP_Instance /* instance */, |
996 uint32_t /* reference_id */) | 996 uint32_t /* session_id */) |
997 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionClosed, | 997 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SessionClosed, |
998 PP_Instance /* instance */, | 998 PP_Instance /* instance */, |
999 uint32_t /* reference_id */) | 999 uint32_t /* session_id */) |
1000 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionError, | 1000 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SessionError, |
1001 PP_Instance /* instance */, | 1001 PP_Instance /* instance */, |
1002 uint32_t /* reference_id */, | 1002 uint32_t /* session_id */, |
1003 int32_t /* media_error */, | 1003 int32_t /* media_error */, |
1004 int32_t /* system_code */) | 1004 int32_t /* system_code */) |
1005 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverBlock, | 1005 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_DeliverBlock, |
1006 PP_Instance /* instance */, | 1006 PP_Instance /* instance */, |
1007 PP_Resource /* decrypted_block, PPB_Buffer_Dev */, | 1007 PP_Resource /* decrypted_block, PPB_Buffer_Dev */, |
1008 std::string /* serialized_block_info */) | 1008 std::string /* serialized_block_info */) |
1009 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_DecoderInitializeDone, | 1009 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_DecoderInitializeDone, |
1010 PP_Instance /* instance */, | 1010 PP_Instance /* instance */, |
1011 PP_DecryptorStreamType /* decoder_type */, | 1011 PP_DecryptorStreamType /* decoder_type */, |
1012 uint32_t /* request_id */, | 1012 uint32_t /* request_id */, |
(...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1998 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 1998 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
1999 PP_TalkPermission /* permission */) | 1999 PP_TalkPermission /* permission */) |
2000 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2000 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2001 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2001 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2002 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2002 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2003 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2003 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2004 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2004 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2005 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2005 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2006 | 2006 |
2007 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2007 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |