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

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

Issue 215803002: Remove CommandBuffer::GetTransferBuffer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppapi_command_buffer_proxy.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 #include <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 bool /* success */) 800 bool /* success */)
801 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, 801 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange,
802 ppapi::HostResource /* context */, 802 ppapi::HostResource /* context */,
803 int32 /* start */, 803 int32 /* start */,
804 int32 /* end */, 804 int32 /* end */,
805 gpu::CommandBuffer::State /* state */, 805 gpu::CommandBuffer::State /* state */,
806 bool /* success */) 806 bool /* success */)
807 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush, 807 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_AsyncFlush,
808 ppapi::HostResource /* context */, 808 ppapi::HostResource /* context */,
809 int32 /* put_offset */) 809 int32 /* put_offset */)
810 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, 810 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer,
811 ppapi::HostResource /* context */, 811 ppapi::HostResource /* context */,
812 uint32 /* size */, 812 uint32 /* size */,
813 int32 /* id */) 813 int32 /* id */,
814 ppapi::proxy::SerializedHandle /* transfer_buffer */)
814 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 815 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
815 ppapi::HostResource /* context */, 816 ppapi::HostResource /* context */,
816 int32 /* id */) 817 int32 /* id */)
817 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer,
818 ppapi::HostResource /* context */,
819 int32 /* id */,
820 ppapi::proxy::SerializedHandle /* transfer_buffer */)
821 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 818 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
822 ppapi::HostResource /* graphics_3d */) 819 ppapi::HostResource /* graphics_3d */)
823 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, 820 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint,
824 ppapi::HostResource /* context */, 821 ppapi::HostResource /* context */,
825 uint32 /* sync_point */) 822 uint32 /* sync_point */)
826 823
827 // PPB_ImageData. 824 // PPB_ImageData.
828 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform, 825 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform,
829 PP_Instance /* instance */, 826 PP_Instance /* instance */,
830 int32 /* format */, 827 int32 /* format */,
(...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after
2115 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2112 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2116 PP_TalkPermission /* permission */) 2113 PP_TalkPermission /* permission */)
2117 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2114 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2118 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2115 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2119 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2116 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2120 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2117 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2121 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2118 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2122 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2119 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2123 2120
2124 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2121 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/ppapi_command_buffer_proxy.cc ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698