OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 bool /* clip_specified */, | 780 bool /* clip_specified */, |
781 PP_Rect /* clip */, | 781 PP_Rect /* clip */, |
782 PP_Point /* amount */) | 782 PP_Point /* amount */) |
783 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, | 783 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, |
784 ppapi::HostResource /* graphics_2d */, | 784 ppapi::HostResource /* graphics_2d */, |
785 ppapi::HostResource /* image_data */) | 785 ppapi::HostResource /* image_data */) |
786 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, | 786 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, |
787 ppapi::HostResource /* graphics_2d */) | 787 ppapi::HostResource /* graphics_2d */) |
788 | 788 |
789 // PPB_Graphics3D. | 789 // PPB_Graphics3D. |
790 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_Create, | 790 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, |
791 PP_Instance /* instance */, | 791 PP_Instance /* instance */, |
| 792 ppapi::HostResource /* share_context */, |
792 std::vector<int32_t> /* attrib_list */, | 793 std::vector<int32_t> /* attrib_list */, |
793 ppapi::HostResource /* result */) | 794 ppapi::HostResource /* result */) |
794 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, | 795 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, |
795 ppapi::HostResource /* context */) | 796 ppapi::HostResource /* context */) |
796 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, | 797 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, |
797 ppapi::HostResource /* context */, | 798 ppapi::HostResource /* context */, |
798 int32 /* transfer_buffer_id */) | 799 int32 /* transfer_buffer_id */) |
799 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBGraphics3D_GetState, | 800 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBGraphics3D_GetState, |
800 ppapi::HostResource /* context */, | 801 ppapi::HostResource /* context */, |
801 gpu::CommandBuffer::State /* state */, | 802 gpu::CommandBuffer::State /* state */, |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1338 // PPB_X509Certificate_Private | 1339 // PPB_X509Certificate_Private |
1339 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1340 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
1340 std::vector<char> /* der */, | 1341 std::vector<char> /* der */, |
1341 bool /* succeeded */, | 1342 bool /* succeeded */, |
1342 ppapi::PPB_X509Certificate_Fields /* result */) | 1343 ppapi::PPB_X509Certificate_Fields /* result */) |
1343 | 1344 |
1344 // PPB_Font. | 1345 // PPB_Font. |
1345 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1346 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1346 std::string /* result */) | 1347 std::string /* result */) |
1347 #endif // !defined(OS_NACL) | 1348 #endif // !defined(OS_NACL) |
OLD | NEW |