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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
781 | 781 |
782 // PPB_Graphics3D. | 782 // PPB_Graphics3D. |
783 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, | 783 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, |
784 PP_Instance /* instance */, | 784 PP_Instance /* instance */, |
785 ppapi::HostResource /* share_context */, | 785 ppapi::HostResource /* share_context */, |
786 std::vector<int32_t> /* attrib_list */, | 786 std::vector<int32_t> /* attrib_list */, |
787 ppapi::HostResource /* result */) | 787 ppapi::HostResource /* result */) |
788 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, | 788 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, |
789 ppapi::HostResource /* context */, | 789 ppapi::HostResource /* context */, |
790 int32 /* transfer_buffer_id */) | 790 int32 /* transfer_buffer_id */) |
791 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBGraphics3D_GetState, | |
792 ppapi::HostResource /* context */, | |
793 gpu::CommandBuffer::State /* state */, | |
794 bool /* success */) | |
795 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, | 791 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, |
796 ppapi::HostResource /* context */, | 792 ppapi::HostResource /* context */, |
797 int32 /* start */, | 793 int32 /* start */, |
798 int32 /* end */, | 794 int32 /* end */, |
799 gpu::CommandBuffer::State /* state */, | 795 gpu::CommandBuffer::State /* state */, |
800 bool /* success */) | 796 bool /* success */) |
801 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, | 797 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, |
802 ppapi::HostResource /* context */, | 798 ppapi::HostResource /* context */, |
803 int32 /* start */, | 799 int32 /* start */, |
804 int32 /* end */, | 800 int32 /* end */, |
(...skipping 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2107 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2103 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2108 PP_TalkPermission /* permission */) | 2104 PP_TalkPermission /* permission */) |
2109 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2105 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2110 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2106 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2111 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2107 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2112 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2108 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2113 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2109 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2114 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2110 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2115 | 2111 |
2116 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2112 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |