| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 uint32_t /* requested */, | 209 uint32_t /* requested */, |
| 210 uint32_t /* result */) | 210 uint32_t /* result */) |
| 211 | 211 |
| 212 // PPB_Buffer. | 212 // PPB_Buffer. |
| 213 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, | 213 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, |
| 214 PP_Instance /* instance */, | 214 PP_Instance /* instance */, |
| 215 uint32_t /* size */, | 215 uint32_t /* size */, |
| 216 pp::proxy::HostResource /* result_resource */, | 216 pp::proxy::HostResource /* result_resource */, |
| 217 int32_t /* result_shm_handle */) | 217 int32_t /* result_shm_handle */) |
| 218 | 218 |
| 219 // PPB_Console. |
| 220 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log, |
| 221 PP_Instance /* instance */, |
| 222 int /* log_level */, |
| 223 pp::proxy::SerializedVar /* value */) |
| 224 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBConsole_LogWithSource, |
| 225 PP_Instance /* instance */, |
| 226 int /* log_level */, |
| 227 pp::proxy::SerializedVar /* soruce */, |
| 228 pp::proxy::SerializedVar /* value */) |
| 229 |
| 219 // PPB_Context3D. | 230 // PPB_Context3D. |
| 220 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Create, | 231 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_Create, |
| 221 PP_Instance /* instance */, | 232 PP_Instance /* instance */, |
| 222 int32_t /* config */, | 233 int32_t /* config */, |
| 223 std::vector<int32_t> /* attrib_list */, | 234 std::vector<int32_t> /* attrib_list */, |
| 224 pp::proxy::HostResource /* result */) | 235 pp::proxy::HostResource /* result */) |
| 225 | 236 |
| 226 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_BindSurfaces, | 237 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBContext3D_BindSurfaces, |
| 227 pp::proxy::HostResource /* context */, | 238 pp::proxy::HostResource /* context */, |
| 228 pp::proxy::HostResource /* draw */, | 239 pp::proxy::HostResource /* draw */, |
| (...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 712 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
| 702 pp::proxy::SerializedVar /* var */, | 713 pp::proxy::SerializedVar /* var */, |
| 703 int64 /* object_class */, | 714 int64 /* object_class */, |
| 704 int64 /* object-data */, | 715 int64 /* object-data */, |
| 705 PP_Bool /* result */) | 716 PP_Bool /* result */) |
| 706 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 717 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
| 707 PP_Instance /* instance */, | 718 PP_Instance /* instance */, |
| 708 int64 /* object_class */, | 719 int64 /* object_class */, |
| 709 int64 /* object_data */, | 720 int64 /* object_data */, |
| 710 pp::proxy::SerializedVar /* result */) | 721 pp::proxy::SerializedVar /* result */) |
| OLD | NEW |