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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 bool /* success */) | 797 bool /* success */) |
798 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, | 798 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, |
799 ppapi::HostResource /* context */, | 799 ppapi::HostResource /* context */, |
800 int32 /* start */, | 800 int32 /* start */, |
801 int32 /* end */, | 801 int32 /* end */, |
802 gpu::CommandBuffer::State /* state */, | 802 gpu::CommandBuffer::State /* state */, |
803 bool /* success */) | 803 bool /* success */) |
804 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, | 804 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, |
805 ppapi::HostResource /* context */, | 805 ppapi::HostResource /* context */, |
806 int32 /* put_offset */) | 806 int32 /* put_offset */) |
807 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, | 807 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, |
808 ppapi::HostResource /* context */, | 808 ppapi::HostResource /* context */, |
809 uint32 /* size */, | 809 uint32 /* size */, |
810 int32 /* id */) | 810 int32 /* id */, |
| 811 ppapi::proxy::SerializedHandle /* transfer_buffer */) |
811 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, | 812 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, |
812 ppapi::HostResource /* context */, | 813 ppapi::HostResource /* context */, |
813 int32 /* id */) | 814 int32 /* id */) |
814 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, | |
815 ppapi::HostResource /* context */, | |
816 int32 /* id */, | |
817 ppapi::proxy::SerializedHandle /* transfer_buffer */) | |
818 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, | 815 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, |
819 ppapi::HostResource /* graphics_3d */) | 816 ppapi::HostResource /* graphics_3d */) |
820 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, | 817 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, |
821 ppapi::HostResource /* context */, | 818 ppapi::HostResource /* context */, |
822 uint32 /* sync_point */) | 819 uint32 /* sync_point */) |
823 | 820 |
824 // PPB_ImageData. | 821 // PPB_ImageData. |
825 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform, | 822 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform, |
826 PP_Instance /* instance */, | 823 PP_Instance /* instance */, |
827 int32 /* format */, | 824 int32 /* format */, |
(...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2112 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2109 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2113 PP_TalkPermission /* permission */) | 2110 PP_TalkPermission /* permission */) |
2114 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2111 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2115 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2112 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2116 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2113 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2117 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2114 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2118 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2115 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2119 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2116 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2120 | 2117 |
2121 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2118 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |