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

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

Issue 1345813002: Added a unique command buffer ID for command buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad merge Created 5 years, 3 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 | « 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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 ppapi::HostResource /* audio_id */, 890 ppapi::HostResource /* audio_id */,
891 bool /* play */) 891 bool /* play */)
892 892
893 // PPB_Core. 893 // PPB_Core.
894 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, 894 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource,
895 ppapi::HostResource) 895 ppapi::HostResource)
896 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, 896 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource,
897 ppapi::HostResource) 897 ppapi::HostResource)
898 898
899 // PPB_Graphics3D. 899 // PPB_Graphics3D.
900 IPC_SYNC_MESSAGE_ROUTED3_3(PpapiHostMsg_PPBGraphics3D_Create, 900 IPC_SYNC_MESSAGE_ROUTED3_4(PpapiHostMsg_PPBGraphics3D_Create,
901 PP_Instance /* instance */, 901 PP_Instance /* instance */,
902 ppapi::HostResource /* share_context */, 902 ppapi::HostResource /* share_context */,
903 std::vector<int32_t> /* attrib_list */, 903 std::vector<int32_t> /* attrib_list */,
904 ppapi::HostResource /* result */, 904 ppapi::HostResource /* result */,
905 gpu::Capabilities /* capabilities */, 905 gpu::Capabilities /* capabilities */,
906 ppapi::proxy::SerializedHandle /* shared_state */) 906 ppapi::proxy::SerializedHandle /* shared_state */,
907 uint64_t /* command_buffer_id */)
907 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, 908 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer,
908 ppapi::HostResource /* context */, 909 ppapi::HostResource /* context */,
909 int32 /* transfer_buffer_id */) 910 int32 /* transfer_buffer_id */)
910 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, 911 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange,
911 ppapi::HostResource /* context */, 912 ppapi::HostResource /* context */,
912 int32 /* start */, 913 int32 /* start */,
913 int32 /* end */, 914 int32 /* end */,
914 gpu::CommandBuffer::State /* state */, 915 gpu::CommandBuffer::State /* state */,
915 bool /* success */) 916 bool /* success */)
916 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, 917 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange,
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
2333 std::vector<ppapi::HostResource> /* buffers */, 2334 std::vector<ppapi::HostResource> /* buffers */,
2334 uint32_t /* buffer_size */) 2335 uint32_t /* buffer_size */)
2335 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2336 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2336 uint32_t /* status */) 2337 uint32_t /* status */)
2337 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2338 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2338 uint32_t /* error */) 2339 uint32_t /* error */)
2339 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2340 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2340 uint32_t /* buffer */) 2341 uint32_t /* buffer */)
2341 2342
2342 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2343 #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