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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 base::SharedMemoryHandle /* transfer_buffer */, | 273 base::SharedMemoryHandle /* transfer_buffer */, |
274 uint32 /* size */) | 274 uint32 /* size */) |
275 | 275 |
276 // PPB_Core. | 276 // PPB_Core. |
277 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, | 277 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, |
278 pp::proxy::HostResource) | 278 pp::proxy::HostResource) |
279 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, | 279 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, |
280 pp::proxy::HostResource) | 280 pp::proxy::HostResource) |
281 | 281 |
282 // PPB_CharSet. | 282 // PPB_CharSet. |
283 IPC_SYNC_MESSAGE_ROUTED4_2(PpapiHostMsg_PPBCharSet_UTF16ToCharSet, | |
284 PP_Instance /* instance */, | |
285 string16 /* utf16 */, | |
286 std::string /* char_set */, | |
287 int32_t /* on_error */, | |
288 std::string /* output */, | |
289 bool /* output_is_success */) | |
290 IPC_SYNC_MESSAGE_ROUTED4_2(PpapiHostMsg_PPBCharSet_CharSetToUTF16, | |
291 PP_Instance /* instance */, | |
292 std::string /* input */, | |
293 std::string /* char_set */, | |
294 int32_t /* on_error */, | |
295 string16 /* output */, | |
296 bool /* output_is_success */) | |
297 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCharSet_GetDefaultCharSet, | 283 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCharSet_GetDefaultCharSet, |
298 PP_Instance /* instance */, | 284 PP_Instance /* instance */, |
299 pp::proxy::SerializedVar /* result */) | 285 pp::proxy::SerializedVar /* result */) |
300 | 286 |
301 // PPB_CursorControl. | 287 // PPB_CursorControl. |
302 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBCursorControl_SetCursor, | 288 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBCursorControl_SetCursor, |
303 PP_Instance /* instance */, | 289 PP_Instance /* instance */, |
304 int32_t /* type */, | 290 int32_t /* type */, |
305 pp::proxy::HostResource /* custom_image */, | 291 pp::proxy::HostResource /* custom_image */, |
306 PP_Point /* hot_spot */, | 292 PP_Point /* hot_spot */, |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 698 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
713 pp::proxy::SerializedVar /* var */, | 699 pp::proxy::SerializedVar /* var */, |
714 int64 /* object_class */, | 700 int64 /* object_class */, |
715 int64 /* object-data */, | 701 int64 /* object-data */, |
716 PP_Bool /* result */) | 702 PP_Bool /* result */) |
717 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 703 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
718 PP_Instance /* instance */, | 704 PP_Instance /* instance */, |
719 int64 /* object_class */, | 705 int64 /* object_class */, |
720 int64 /* object_data */, | 706 int64 /* object_data */, |
721 pp::proxy::SerializedVar /* result */) | 707 pp::proxy::SerializedVar /* result */) |
OLD | NEW |