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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 ppapi::HostResource /* graphics_2d */, | 774 ppapi::HostResource /* graphics_2d */, |
775 ppapi::HostResource /* image_data */) | 775 ppapi::HostResource /* image_data */) |
776 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, | 776 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, |
777 ppapi::HostResource /* graphics_2d */) | 777 ppapi::HostResource /* graphics_2d */) |
778 | 778 |
779 // PPB_Graphics3D. | 779 // PPB_Graphics3D. |
780 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, | 780 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, |
781 PP_Instance /* instance */, | 781 PP_Instance /* instance */, |
782 std::vector<int32_t> /* attrib_list */, | 782 std::vector<int32_t> /* attrib_list */, |
783 ppapi::HostResource /* result */) | 783 ppapi::HostResource /* result */) |
784 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, | 784 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, |
785 ppapi::HostResource /* context */) | |
786 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, | |
787 ppapi::HostResource /* context */, | 785 ppapi::HostResource /* context */, |
788 int32 /* transfer_buffer_id */) | 786 int32 /* size */, |
| 787 base::SharedMemoryHandle /* ring_buffer */) |
789 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, | 788 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, |
790 ppapi::HostResource /* context */, | 789 ppapi::HostResource /* context */, |
791 gpu::CommandBuffer::State /* state */) | 790 gpu::CommandBuffer::State /* state */) |
792 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Flush, | 791 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Flush, |
793 ppapi::HostResource /* context */, | 792 ppapi::HostResource /* context */, |
794 int32 /* put_offset */, | 793 int32 /* put_offset */, |
795 int32 /* last_known_get */, | 794 int32 /* last_known_get */, |
796 gpu::CommandBuffer::State /* state */) | 795 gpu::CommandBuffer::State /* state */) |
797 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, | 796 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, |
798 ppapi::HostResource /* context */, | 797 ppapi::HostResource /* context */, |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1064 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1063 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1065 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1064 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1066 ppapi::HostResource /* video_decoder */, | 1065 ppapi::HostResource /* video_decoder */, |
1067 int32_t /* picture buffer id */) | 1066 int32_t /* picture buffer id */) |
1068 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1067 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1069 ppapi::HostResource /* video_decoder */) | 1068 ppapi::HostResource /* video_decoder */) |
1070 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1069 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1071 ppapi::HostResource /* video_decoder */) | 1070 ppapi::HostResource /* video_decoder */) |
1072 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1071 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1073 ppapi::HostResource /* video_decoder */) | 1072 ppapi::HostResource /* video_decoder */) |
OLD | NEW |