| 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 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 ppapi::HostResource /* context */, | 1035 ppapi::HostResource /* context */, |
| 1036 int32_t /* put_offset */) | 1036 int32_t /* put_offset */) |
| 1037 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, | 1037 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, |
| 1038 ppapi::HostResource /* context */, | 1038 ppapi::HostResource /* context */, |
| 1039 uint32_t /* size */, | 1039 uint32_t /* size */, |
| 1040 int32_t /* id */, | 1040 int32_t /* id */, |
| 1041 ppapi::proxy::SerializedHandle /* transfer_buffer */) | 1041 ppapi::proxy::SerializedHandle /* transfer_buffer */) |
| 1042 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, | 1042 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, |
| 1043 ppapi::HostResource /* context */, | 1043 ppapi::HostResource /* context */, |
| 1044 int32_t /* id */) | 1044 int32_t /* id */) |
| 1045 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, | 1045 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_SwapBuffers, |
| 1046 ppapi::HostResource /* graphics_3d */) | 1046 ppapi::HostResource /* graphics_3d */, |
| 1047 gpu::SyncToken /* sync_token */) |
| 1047 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, | 1048 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, |
| 1048 ppapi::HostResource /* context */, | 1049 ppapi::HostResource /* context */, |
| 1049 uint32_t /* sync_point */) | 1050 uint32_t /* sync_point */) |
| 1050 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertFutureSyncPoint, | 1051 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertFutureSyncPoint, |
| 1051 ppapi::HostResource /* context */, | 1052 ppapi::HostResource /* context */, |
| 1052 uint32_t /* sync_point */) | 1053 uint32_t /* sync_point */) |
| 1053 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_RetireSyncPoint, | 1054 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_RetireSyncPoint, |
| 1054 ppapi::HostResource /* context */, | 1055 ppapi::HostResource /* context */, |
| 1055 uint32_t /* sync_point */) | 1056 uint32_t /* sync_point */) |
| 1056 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible, | 1057 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible, |
| (...skipping 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2438 std::vector<ppapi::HostResource> /* buffers */, | 2439 std::vector<ppapi::HostResource> /* buffers */, |
| 2439 uint32_t /* buffer_size */) | 2440 uint32_t /* buffer_size */) |
| 2440 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 2441 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
| 2441 uint32_t /* status */) | 2442 uint32_t /* status */) |
| 2442 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2443 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
| 2443 uint32_t /* error */) | 2444 uint32_t /* error */) |
| 2444 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2445 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
| 2445 uint32_t /* buffer */) | 2446 uint32_t /* buffer */) |
| 2446 | 2447 |
| 2447 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2448 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |