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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_NavigateToURL, | 349 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_NavigateToURL, |
350 PP_Instance /* instance */, | 350 PP_Instance /* instance */, |
351 std::string /* url */, | 351 std::string /* url */, |
352 std::string /* target */, | 352 std::string /* target */, |
353 PP_Bool /* result */) | 353 PP_Bool /* result */) |
354 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, | 354 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, |
355 PP_Instance /* instance */) | 355 PP_Instance /* instance */) |
356 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, | 356 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, |
357 PP_Instance /* instance */) | 357 PP_Instance /* instance */) |
358 | 358 |
| 359 // PPB_Flash_File_FileRef. |
| 360 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, |
| 361 pp::proxy::HostResource /* file_ref */, |
| 362 int32_t /* mode */, |
| 363 IPC::PlatformFileForTransit /* file_handle */, |
| 364 int32_t /* result */) |
| 365 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, |
| 366 pp::proxy::HostResource /* file_ref */, |
| 367 PP_FileInfo_Dev /* info */, |
| 368 int32_t /* result */) |
| 369 |
359 // PPB_Flash_File_ModuleLocal. | 370 // PPB_Flash_File_ModuleLocal. |
360 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_OpenFile, | 371 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_OpenFile, |
361 PP_Instance /* instance */, | 372 PP_Instance /* instance */, |
362 std::string /* path */, | 373 std::string /* path */, |
363 int32_t /* mode */, | 374 int32_t /* mode */, |
364 IPC::PlatformFileForTransit /* file_handle */, | 375 IPC::PlatformFileForTransit /* file_handle */, |
365 int32_t /* result */) | 376 int32_t /* result */) |
366 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashFile_ModuleLocal_RenameFile, | 377 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashFile_ModuleLocal_RenameFile, |
367 PP_Instance /* instance */, | 378 PP_Instance /* instance */, |
368 std::string /* path_from */, | 379 std::string /* path_from */, |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 669 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
659 pp::proxy::SerializedVar /* var */, | 670 pp::proxy::SerializedVar /* var */, |
660 int64 /* object_class */, | 671 int64 /* object_class */, |
661 int64 /* object-data */, | 672 int64 /* object-data */, |
662 PP_Bool /* result */) | 673 PP_Bool /* result */) |
663 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 674 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
664 PP_Instance /* instance */, | 675 PP_Instance /* instance */, |
665 int64 /* object_class */, | 676 int64 /* object_class */, |
666 int64 /* object_data */, | 677 int64 /* object_data */, |
667 pp::proxy::SerializedVar /* result */) | 678 pp::proxy::SerializedVar /* result */) |
OLD | NEW |