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 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1038 int32_t /* error */) | 1038 int32_t /* error */) |
1039 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioEncoder_Close) | 1039 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioEncoder_Close) |
1040 | 1040 |
1041 // PPB_Core. | 1041 // PPB_Core. |
1042 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, | 1042 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, |
1043 ppapi::HostResource) | 1043 ppapi::HostResource) |
1044 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, | 1044 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, |
1045 ppapi::HostResource) | 1045 ppapi::HostResource) |
1046 | 1046 |
1047 // PPB_Graphics3D. | 1047 // PPB_Graphics3D. |
1048 IPC_SYNC_MESSAGE_ROUTED3_4(PpapiHostMsg_PPBGraphics3D_Create, | 1048 IPC_SYNC_MESSAGE_ROUTED3_4( |
1049 PP_Instance /* instance */, | 1049 PpapiHostMsg_PPBGraphics3D_Create, |
1050 ppapi::HostResource /* share_context */, | 1050 PP_Instance /* instance */, |
1051 std::vector<int32_t> /* attrib_list */, | 1051 ppapi::HostResource /* share_context */, |
1052 ppapi::HostResource /* result */, | 1052 gpu::gles2::ContextCreationAttribHelper /* attrib_helper */, |
1053 gpu::Capabilities /* capabilities */, | 1053 ppapi::HostResource /* result */, |
1054 ppapi::proxy::SerializedHandle /* shared_state */, | 1054 gpu::Capabilities /* capabilities */, |
1055 gpu::CommandBufferId /* command_buffer_id */) | 1055 ppapi::proxy::SerializedHandle /* shared_state */, |
| 1056 gpu::CommandBufferId /* command_buffer_id */) |
1056 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, | 1057 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, |
1057 ppapi::HostResource /* context */, | 1058 ppapi::HostResource /* context */, |
1058 int32_t /* transfer_buffer_id */) | 1059 int32_t /* transfer_buffer_id */) |
1059 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, | 1060 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, |
1060 ppapi::HostResource /* context */, | 1061 ppapi::HostResource /* context */, |
1061 int32_t /* start */, | 1062 int32_t /* start */, |
1062 int32_t /* end */, | 1063 int32_t /* end */, |
1063 gpu::CommandBuffer::State /* state */, | 1064 gpu::CommandBuffer::State /* state */, |
1064 bool /* success */) | 1065 bool /* success */) |
1065 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, | 1066 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, |
(...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2523 std::vector<ppapi::HostResource> /* buffers */, | 2524 std::vector<ppapi::HostResource> /* buffers */, |
2524 uint32_t /* buffer_size */) | 2525 uint32_t /* buffer_size */) |
2525 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 2526 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
2526 uint32_t /* status */) | 2527 uint32_t /* status */) |
2527 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2528 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
2528 uint32_t /* error */) | 2529 uint32_t /* error */) |
2529 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2530 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
2530 uint32_t /* buffer */) | 2531 uint32_t /* buffer */) |
2531 | 2532 |
2532 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2533 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |