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/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
842 int32 /* id */) | 842 int32 /* id */) |
843 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, | 843 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, |
844 ppapi::HostResource /* context */, | 844 ppapi::HostResource /* context */, |
845 int32 /* id */) | 845 int32 /* id */) |
846 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, | 846 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, |
847 ppapi::HostResource /* context */, | 847 ppapi::HostResource /* context */, |
848 int32 /* id */, | 848 int32 /* id */, |
849 ppapi::proxy::SerializedHandle /* transfer_buffer */) | 849 ppapi::proxy::SerializedHandle /* transfer_buffer */) |
850 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, | 850 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, |
851 ppapi::HostResource /* graphics_3d */) | 851 ppapi::HostResource /* graphics_3d */) |
| 852 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, |
| 853 ppapi::HostResource /* context */, |
| 854 uint32 /* sync_point */) |
852 | 855 |
853 // PPB_ImageData. | 856 // PPB_ImageData. |
854 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, | 857 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, |
855 PP_Instance /* instance */, | 858 PP_Instance /* instance */, |
856 int32 /* format */, | 859 int32 /* format */, |
857 PP_Size /* size */, | 860 PP_Size /* size */, |
858 PP_Bool /* init_to_zero */, | 861 PP_Bool /* init_to_zero */, |
859 ppapi::HostResource /* result_resource */, | 862 ppapi::HostResource /* result_resource */, |
860 std::string /* image_data_desc */, | 863 std::string /* image_data_desc */, |
861 ppapi::proxy::ImageHandle /* result */) | 864 ppapi::proxy::ImageHandle /* result */) |
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1707 std::vector<ppapi::HostResource> /* buffers */, | 1710 std::vector<ppapi::HostResource> /* buffers */, |
1708 uint32_t /* buffer_size */) | 1711 uint32_t /* buffer_size */) |
1709 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1712 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
1710 uint32_t /* status */) | 1713 uint32_t /* status */) |
1711 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1714 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
1712 uint32_t /* error */) | 1715 uint32_t /* error */) |
1713 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1716 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
1714 uint32_t /* buffer */) | 1717 uint32_t /* buffer */) |
1715 | 1718 |
1716 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1719 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |