| 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 <map> | 6 #include <map> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 IPC::PlatformFileForTransit /* handle */, | 654 IPC::PlatformFileForTransit /* handle */, |
| 655 int32_t /* result */) | 655 int32_t /* result */) |
| 656 | 656 |
| 657 // PPP_ContentDecryptor_Dev | 657 // PPP_ContentDecryptor_Dev |
| 658 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize, | 658 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_Initialize, |
| 659 PP_Instance /* instance */, | 659 PP_Instance /* instance */, |
| 660 ppapi::proxy::SerializedVar /* key_system, String */) | 660 ppapi::proxy::SerializedVar /* key_system, String */) |
| 661 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_CreateSession, | 661 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPContentDecryptor_CreateSession, |
| 662 PP_Instance /* instance */, | 662 PP_Instance /* instance */, |
| 663 uint32_t /* session_id */, | 663 uint32_t /* session_id */, |
| 664 ppapi::proxy::SerializedVar /* type, String */, | 664 ppapi::proxy::SerializedVar /* content_type, String */, |
| 665 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) | 665 ppapi::proxy::SerializedVar /* init_data, ArrayBuffer */) |
| 666 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_LoadSession, |
| 667 PP_Instance /* instance */, |
| 668 uint32_t /* session_id */, |
| 669 ppapi::proxy::SerializedVar /* web_session_id, String */) |
| 666 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_UpdateSession, | 670 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_UpdateSession, |
| 667 PP_Instance /* instance */, | 671 PP_Instance /* instance */, |
| 668 uint32_t /* session_id */, | 672 uint32_t /* session_id */, |
| 669 ppapi::proxy::SerializedVar /* response, ArrayBuffer */) | 673 ppapi::proxy::SerializedVar /* response, ArrayBuffer */) |
| 670 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_ReleaseSession, | 674 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPContentDecryptor_ReleaseSession, |
| 671 PP_Instance /* instance */, | 675 PP_Instance /* instance */, |
| 672 uint32_t /* session_id */) | 676 uint32_t /* session_id */) |
| 673 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, | 677 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPContentDecryptor_Decrypt, |
| 674 PP_Instance /* instance */, | 678 PP_Instance /* instance */, |
| 675 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, | 679 ppapi::proxy::PPPDecryptor_Buffer /* buffer */, |
| (...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2065 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2069 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2066 PP_TalkPermission /* permission */) | 2070 PP_TalkPermission /* permission */) |
| 2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2068 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2072 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2069 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2073 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2070 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2074 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2075 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2072 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2076 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2073 | 2077 |
| 2074 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2078 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |