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

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

Issue 2129803002: Revert of pepper: parse context creation attrib list on the plugin side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gpu_pref_size_in_attrs
Patch Set: Created 4 years, 5 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/native_client/native_client.gyp ('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 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after
1038 int32_t /* error */) 1038 int32_t /* error */)
1039 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioEncoder_Close) 1039 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioEncoder_Close)
1040 1040
1041 // PPB_Core. 1041 // PPB_Core.
1042 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, 1042 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource,
1043 ppapi::HostResource) 1043 ppapi::HostResource)
1044 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, 1044 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource,
1045 ppapi::HostResource) 1045 ppapi::HostResource)
1046 1046
1047 // PPB_Graphics3D. 1047 // PPB_Graphics3D.
1048 IPC_SYNC_MESSAGE_ROUTED3_4( 1048 IPC_SYNC_MESSAGE_ROUTED3_4(PpapiHostMsg_PPBGraphics3D_Create,
1049 PpapiHostMsg_PPBGraphics3D_Create, 1049 PP_Instance /* instance */,
1050 PP_Instance /* instance */, 1050 ppapi::HostResource /* share_context */,
1051 ppapi::HostResource /* share_context */, 1051 std::vector<int32_t> /* attrib_list */,
1052 gpu::gles2::ContextCreationAttribHelper /* attrib_helper */, 1052 ppapi::HostResource /* result */,
1053 ppapi::HostResource /* result */, 1053 gpu::Capabilities /* capabilities */,
1054 gpu::Capabilities /* capabilities */, 1054 ppapi::proxy::SerializedHandle /* shared_state */,
1055 ppapi::proxy::SerializedHandle /* shared_state */, 1055 gpu::CommandBufferId /* command_buffer_id */)
1056 gpu::CommandBufferId /* command_buffer_id */)
1057 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, 1056 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer,
1058 ppapi::HostResource /* context */, 1057 ppapi::HostResource /* context */,
1059 int32_t /* transfer_buffer_id */) 1058 int32_t /* transfer_buffer_id */)
1060 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, 1059 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange,
1061 ppapi::HostResource /* context */, 1060 ppapi::HostResource /* context */,
1062 int32_t /* start */, 1061 int32_t /* start */,
1063 int32_t /* end */, 1062 int32_t /* end */,
1064 gpu::CommandBuffer::State /* state */, 1063 gpu::CommandBuffer::State /* state */,
1065 bool /* success */) 1064 bool /* success */)
1066 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, 1065 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange,
(...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after
2495 std::vector<ppapi::HostResource> /* buffers */, 2494 std::vector<ppapi::HostResource> /* buffers */,
2496 uint32_t /* buffer_size */) 2495 uint32_t /* buffer_size */)
2497 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2496 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2498 uint32_t /* status */) 2497 uint32_t /* status */)
2499 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2498 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2500 uint32_t /* error */) 2499 uint32_t /* error */)
2501 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2500 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2502 uint32_t /* buffer */) 2501 uint32_t /* buffer */)
2503 2502
2504 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2503 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/native_client/native_client.gyp ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698