| 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 int32 /* start */, | 905 int32 /* start */, |
| 906 int32 /* end */, | 906 int32 /* end */, |
| 907 gpu::CommandBuffer::State /* state */, | 907 gpu::CommandBuffer::State /* state */, |
| 908 bool /* success */) | 908 bool /* success */) |
| 909 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, | 909 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, |
| 910 ppapi::HostResource /* context */, | 910 ppapi::HostResource /* context */, |
| 911 int32 /* start */, | 911 int32 /* start */, |
| 912 int32 /* end */, | 912 int32 /* end */, |
| 913 gpu::CommandBuffer::State /* state */, | 913 gpu::CommandBuffer::State /* state */, |
| 914 bool /* success */) | 914 bool /* success */) |
| 915 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, | 915 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBGraphics3D_AsyncFlush, |
| 916 ppapi::HostResource /* context */, | 916 ppapi::HostResource /* context */, |
| 917 int32 /* put_offset */) | 917 int32 /* put_offset */, |
| 918 std::vector<uint32> /* sync_points */) |
| 918 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, | 919 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, |
| 919 ppapi::HostResource /* context */, | 920 ppapi::HostResource /* context */, |
| 920 uint32 /* size */, | 921 uint32 /* size */, |
| 921 int32 /* id */, | 922 int32 /* id */, |
| 922 ppapi::proxy::SerializedHandle /* transfer_buffer */) | 923 ppapi::proxy::SerializedHandle /* transfer_buffer */) |
| 923 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, | 924 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, |
| 924 ppapi::HostResource /* context */, | 925 ppapi::HostResource /* context */, |
| 925 int32 /* id */) | 926 int32 /* id */) |
| 926 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, | 927 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, |
| 927 ppapi::HostResource /* graphics_3d */) | 928 ppapi::HostResource /* graphics_3d */) |
| (...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2290 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2291 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2291 PP_TalkPermission /* permission */) | 2292 PP_TalkPermission /* permission */) |
| 2292 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2293 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2293 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2294 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2294 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2295 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2295 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2296 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2296 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2297 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2297 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2298 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2298 | 2299 |
| 2299 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2300 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |