OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 PpapiHostMsg_PPBFlash_GetModuleLocalDirContents, | 322 PpapiHostMsg_PPBFlash_GetModuleLocalDirContents, |
323 PP_Instance /* instance */, | 323 PP_Instance /* instance */, |
324 std::string /* path */, | 324 std::string /* path */, |
325 std::vector<pp::proxy::SerializedDirEntry> /* entries */, | 325 std::vector<pp::proxy::SerializedDirEntry> /* entries */, |
326 int32_t /* result */) | 326 int32_t /* result */) |
327 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_NavigateToURL, | 327 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_NavigateToURL, |
328 PP_Instance /* instance */, | 328 PP_Instance /* instance */, |
329 std::string /* url */, | 329 std::string /* url */, |
330 std::string /* target */, | 330 std::string /* target */, |
331 PP_Bool /* result */) | 331 PP_Bool /* result */) |
| 332 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, |
| 333 PP_Instance /* instance */) |
| 334 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, |
| 335 PP_Instance /* instance */) |
| 336 |
| 337 // PPB_Flash_Menu |
| 338 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create, |
| 339 PP_Instance /* instance */, |
| 340 pp::proxy::SerializedFlashMenu /* menu_data */, |
| 341 pp::proxy::HostResource /* result */) |
| 342 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashMenu_Show, |
| 343 pp::proxy::HostResource /* menu */, |
| 344 PP_Point /* location */) |
| 345 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, |
| 346 pp::proxy::HostResource /* menu */, |
| 347 int32_t /* selected_id */, |
| 348 int32_t /* result */) |
| 349 |
332 | 350 |
333 // PPB_Font. | 351 // PPB_Font. |
334 IPC_SYNC_MESSAGE_ROUTED2_3( | 352 IPC_SYNC_MESSAGE_ROUTED2_3( |
335 PpapiHostMsg_PPBFont_Create, | 353 PpapiHostMsg_PPBFont_Create, |
336 PP_Instance /* instance */, | 354 PP_Instance /* instance */, |
337 pp::proxy::SerializedFontDescription /* in_description */, | 355 pp::proxy::SerializedFontDescription /* in_description */, |
338 pp::proxy::HostResource /* result */, | 356 pp::proxy::HostResource /* result */, |
339 pp::proxy::SerializedFontDescription /* out_description */, | 357 pp::proxy::SerializedFontDescription /* out_description */, |
340 std::string /* out_metrics */) | 358 std::string /* out_metrics */) |
341 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFont_DrawTextAt, | 359 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFont_DrawTextAt, |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 601 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
584 pp::proxy::SerializedVar /* var */, | 602 pp::proxy::SerializedVar /* var */, |
585 int64 /* object_class */, | 603 int64 /* object_class */, |
586 int64 /* object-data */, | 604 int64 /* object-data */, |
587 PP_Bool /* result */) | 605 PP_Bool /* result */) |
588 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 606 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
589 PP_Instance /* instance */, | 607 PP_Instance /* instance */, |
590 int64 /* object_class */, | 608 int64 /* object_class */, |
591 int64 /* object_data */, | 609 int64 /* object_data */, |
592 pp::proxy::SerializedVar /* result */) | 610 pp::proxy::SerializedVar /* result */) |
OLD | NEW |