Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(853)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 1937173002: Revert of Pepper takes ownership of a mailbox before passing it to the texture layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/ipc/service/gpu_command_buffer_stub.cc ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 ppapi::HostResource /* context */, 1036 ppapi::HostResource /* context */,
1037 int32_t /* put_offset */) 1037 int32_t /* put_offset */)
1038 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, 1038 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer,
1039 ppapi::HostResource /* context */, 1039 ppapi::HostResource /* context */,
1040 uint32_t /* size */, 1040 uint32_t /* size */,
1041 int32_t /* id */, 1041 int32_t /* id */,
1042 ppapi::proxy::SerializedHandle /* transfer_buffer */) 1042 ppapi::proxy::SerializedHandle /* transfer_buffer */)
1043 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 1043 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
1044 ppapi::HostResource /* context */, 1044 ppapi::HostResource /* context */,
1045 int32_t /* id */) 1045 int32_t /* id */)
1046 // The receiver of this message takes ownership of the front buffer of the GL
1047 // context. Each call to PpapiHostMsg_PPBGraphics3D_SwapBuffers must be preceded
1048 // by exactly one call to PpapiHostMsg_PPBGraphics3D_TakeFrontBuffer. The
1049 // SyncToken passed to PpapiHostMsg_PPBGraphics3D_SwapBuffers must be generated
1050 // after this message is sent.
1051 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_TakeFrontBuffer,
1052 ppapi::HostResource /* graphics_3d */)
1053 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 1046 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
1054 ppapi::HostResource /* graphics_3d */, 1047 ppapi::HostResource /* graphics_3d */,
1055 gpu::SyncToken /* sync_token */) 1048 gpu::SyncToken /* sync_token */)
1056 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible, 1049 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible,
1057 ppapi::HostResource /* context */) 1050 ppapi::HostResource /* context */)
1058 1051
1059 // PPB_ImageData. 1052 // PPB_ImageData.
1060 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform, 1053 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform,
1061 PP_Instance /* instance */, 1054 PP_Instance /* instance */,
1062 int32_t /* format */, 1055 int32_t /* format */,
(...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
2441 std::vector<ppapi::HostResource> /* buffers */, 2434 std::vector<ppapi::HostResource> /* buffers */,
2442 uint32_t /* buffer_size */) 2435 uint32_t /* buffer_size */)
2443 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2436 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2444 uint32_t /* status */) 2437 uint32_t /* status */)
2445 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2438 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2446 uint32_t /* error */) 2439 uint32_t /* error */)
2447 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2440 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2448 uint32_t /* buffer */) 2441 uint32_t /* buffer */)
2449 2442
2450 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2443 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « gpu/ipc/service/gpu_command_buffer_stub.cc ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698