| 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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 ppapi::HostResource /* audio_id */, | 849 ppapi::HostResource /* audio_id */, |
| 850 bool /* play */) | 850 bool /* play */) |
| 851 | 851 |
| 852 // PPB_Core. | 852 // PPB_Core. |
| 853 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, | 853 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, |
| 854 ppapi::HostResource) | 854 ppapi::HostResource) |
| 855 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, | 855 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, |
| 856 ppapi::HostResource) | 856 ppapi::HostResource) |
| 857 | 857 |
| 858 // PPB_Graphics3D. | 858 // PPB_Graphics3D. |
| 859 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, | 859 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_Create, |
| 860 PP_Instance /* instance */, | 860 PP_Instance /* instance */, |
| 861 ppapi::HostResource /* share_context */, | 861 ppapi::HostResource /* share_context */, |
| 862 std::vector<int32_t> /* attrib_list */, | 862 std::vector<int32_t> /* attrib_list */, |
| 863 ppapi::HostResource /* result */) | 863 ppapi::HostResource /* result */, |
| 864 ppapi::proxy::SerializedHandle /* shared_state */) |
| 864 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, | 865 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, |
| 865 ppapi::HostResource /* context */, | 866 ppapi::HostResource /* context */, |
| 866 int32 /* transfer_buffer_id */) | 867 int32 /* transfer_buffer_id */) |
| 867 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, | 868 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, |
| 868 ppapi::HostResource /* context */, | 869 ppapi::HostResource /* context */, |
| 869 int32 /* start */, | 870 int32 /* start */, |
| 870 int32 /* end */, | 871 int32 /* end */, |
| 871 gpu::CommandBuffer::State /* state */, | 872 gpu::CommandBuffer::State /* state */, |
| 872 bool /* success */) | 873 bool /* success */) |
| 873 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, | 874 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, |
| (...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2241 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2242 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2242 PP_TalkPermission /* permission */) | 2243 PP_TalkPermission /* permission */) |
| 2243 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2244 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2244 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2245 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2245 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2246 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2246 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2247 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2247 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2248 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2248 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2249 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2249 | 2250 |
| 2250 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2251 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |