OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "gpu/command_buffer/common/command_buffer.h" | 5 #include "gpu/command_buffer/common/command_buffer.h" |
6 #include "gpu/ipc/gpu_command_buffer_traits.h" | 6 #include "gpu/ipc/gpu_command_buffer_traits.h" |
7 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
8 #include "ppapi/c/dev/pp_file_info_dev.h" | 8 #include "ppapi/c/dev/pp_file_info_dev.h" |
9 #include "ppapi/c/ppb_var.h" | 9 #include "ppapi/c/ppb_var.h" |
10 | 10 |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 uint32_t /* requested */, | 191 uint32_t /* requested */, |
192 uint32_t /* result */) | 192 uint32_t /* result */) |
193 | 193 |
194 // PPB_Buffer. | 194 // PPB_Buffer. |
195 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, | 195 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, |
196 PP_Instance /* instance */, | 196 PP_Instance /* instance */, |
197 uint32_t /* size */, | 197 uint32_t /* size */, |
198 pp::proxy::HostResource /* result_resource */, | 198 pp::proxy::HostResource /* result_resource */, |
199 int32_t /* result_shm_handle */) | 199 int32_t /* result_shm_handle */) |
200 | 200 |
| 201 // PPB_Console. |
| 202 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log, |
| 203 PP_Instance /* instance */, |
| 204 int /* log_level */, |
| 205 pp::proxy::SerializedVar /* value */) |
| 206 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBConsole_LogWithSource, |
| 207 PP_Instance /* instance */, |
| 208 int /* log_level */, |
| 209 pp::proxy::SerializedVar /* soruce */, |
| 210 pp::proxy::SerializedVar /* value */) |
| 211 |
201 // PPB_Context3D. | 212 // PPB_Context3D. |
202 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Create, | 213 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Create, |
203 PP_Instance /* instance */, | 214 PP_Instance /* instance */, |
204 int32_t /* config */, | 215 int32_t /* config */, |
205 std::vector<int32_t> /* attrib_list */, | 216 std::vector<int32_t> /* attrib_list */, |
206 pp::proxy::HostResource /* result */) | 217 pp::proxy::HostResource /* result */) |
207 | 218 |
208 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_BindSurfaces, | 219 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_BindSurfaces, |
209 pp::proxy::HostResource /* context */, | 220 pp::proxy::HostResource /* context */, |
210 pp::proxy::HostResource /* draw */, | 221 pp::proxy::HostResource /* draw */, |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 694 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
684 pp::proxy::SerializedVar /* var */, | 695 pp::proxy::SerializedVar /* var */, |
685 int64 /* object_class */, | 696 int64 /* object_class */, |
686 int64 /* object-data */, | 697 int64 /* object-data */, |
687 PP_Bool /* result */) | 698 PP_Bool /* result */) |
688 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 699 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
689 PP_Instance /* instance */, | 700 PP_Instance /* instance */, |
690 int64 /* object_class */, | 701 int64 /* object_class */, |
691 int64 /* object_data */, | 702 int64 /* object_data */, |
692 pp::proxy::SerializedVar /* result */) | 703 pp::proxy::SerializedVar /* result */) |
OLD | NEW |