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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 int32_t /* result */) | 449 int32_t /* result */) |
450 | 450 |
451 // PPB_Fullscreen. | 451 // PPB_Fullscreen. |
452 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFullscreen_IsFullscreen, | 452 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFullscreen_IsFullscreen, |
453 PP_Instance /* instance */, | 453 PP_Instance /* instance */, |
454 PP_Bool /* result */) | 454 PP_Bool /* result */) |
455 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFullscreen_SetFullscreen, | 455 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFullscreen_SetFullscreen, |
456 PP_Instance /* instance */, | 456 PP_Instance /* instance */, |
457 PP_Bool /* fullscreen */, | 457 PP_Bool /* fullscreen */, |
458 PP_Bool /* result */) | 458 PP_Bool /* result */) |
| 459 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFullscreen_GetScreenSize, |
| 460 PP_Instance /* instance */, |
| 461 PP_Bool /* result */, |
| 462 PP_Size /* size */) |
459 | 463 |
460 // PPB_Graphics2D. | 464 // PPB_Graphics2D. |
461 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics2D_Create, | 465 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics2D_Create, |
462 PP_Instance /* instance */, | 466 PP_Instance /* instance */, |
463 PP_Size /* size */, | 467 PP_Size /* size */, |
464 PP_Bool /* is_always_opaque */, | 468 PP_Bool /* is_always_opaque */, |
465 pp::proxy::HostResource /* result */) | 469 pp::proxy::HostResource /* result */) |
466 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData, | 470 IPC_MESSAGE_ROUTED5(PpapiHostMsg_PPBGraphics2D_PaintImageData, |
467 pp::proxy::HostResource /* graphics_2d */, | 471 pp::proxy::HostResource /* graphics_2d */, |
468 pp::proxy::HostResource /* image_data */, | 472 pp::proxy::HostResource /* image_data */, |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 673 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
670 pp::proxy::SerializedVar /* var */, | 674 pp::proxy::SerializedVar /* var */, |
671 int64 /* object_class */, | 675 int64 /* object_class */, |
672 int64 /* object-data */, | 676 int64 /* object-data */, |
673 PP_Bool /* result */) | 677 PP_Bool /* result */) |
674 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 678 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
675 PP_Instance /* instance */, | 679 PP_Instance /* instance */, |
676 int64 /* object_class */, | 680 int64 /* object_class */, |
677 int64 /* object_data */, | 681 int64 /* object_data */, |
678 pp::proxy::SerializedVar /* result */) | 682 pp::proxy::SerializedVar /* result */) |
OLD | NEW |