| 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 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 ppapi::HostResource /* graphics_2d */, | 827 ppapi::HostResource /* graphics_2d */, |
| 828 ppapi::HostResource /* image_data */) | 828 ppapi::HostResource /* image_data */) |
| 829 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, | 829 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, |
| 830 ppapi::HostResource /* graphics_2d */) | 830 ppapi::HostResource /* graphics_2d */) |
| 831 | 831 |
| 832 // PPB_Graphics3D. | 832 // PPB_Graphics3D. |
| 833 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, | 833 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, |
| 834 PP_Instance /* instance */, | 834 PP_Instance /* instance */, |
| 835 std::vector<int32_t> /* attrib_list */, | 835 std::vector<int32_t> /* attrib_list */, |
| 836 ppapi::HostResource /* result */) | 836 ppapi::HostResource /* result */) |
| 837 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, | 837 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, |
| 838 ppapi::HostResource /* context */) |
| 839 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, |
| 838 ppapi::HostResource /* context */, | 840 ppapi::HostResource /* context */, |
| 839 int32 /* size */, | 841 int32 /* transfer_buffer_id */) |
| 840 base::SharedMemoryHandle /* ring_buffer */) | |
| 841 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, | 842 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_GetState, |
| 842 ppapi::HostResource /* context */, | 843 ppapi::HostResource /* context */, |
| 843 gpu::CommandBuffer::State /* state */) | 844 gpu::CommandBuffer::State /* state */) |
| 844 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Flush, | 845 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Flush, |
| 845 ppapi::HostResource /* context */, | 846 ppapi::HostResource /* context */, |
| 846 int32 /* put_offset */, | 847 int32 /* put_offset */, |
| 847 int32 /* last_known_get */, | 848 int32 /* last_known_get */, |
| 848 gpu::CommandBuffer::State /* state */) | 849 gpu::CommandBuffer::State /* state */) |
| 849 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, | 850 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, |
| 850 ppapi::HostResource /* context */, | 851 ppapi::HostResource /* context */, |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1116 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1117 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1117 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1118 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1118 ppapi::HostResource /* video_decoder */, | 1119 ppapi::HostResource /* video_decoder */, |
| 1119 int32_t /* picture buffer id */) | 1120 int32_t /* picture buffer id */) |
| 1120 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1121 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1121 ppapi::HostResource /* video_decoder */) | 1122 ppapi::HostResource /* video_decoder */) |
| 1122 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1123 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1123 ppapi::HostResource /* video_decoder */) | 1124 ppapi::HostResource /* video_decoder */) |
| 1124 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1125 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1125 ppapi::HostResource /* video_decoder */) | 1126 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |