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

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

Issue 2104403003: 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: rebase 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/ppapi_internal.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(PpapiHostMsg_PPBGraphics3D_Create, 1048 IPC_SYNC_MESSAGE_ROUTED3_4(
1049 PP_Instance /* instance */, 1049 PpapiHostMsg_PPBGraphics3D_Create,
1050 ppapi::HostResource /* share_context */, 1050 PP_Instance /* instance */,
1051 std::vector<int32_t> /* attrib_list */, 1051 ppapi::HostResource /* share_context */,
1052 ppapi::HostResource /* result */, 1052 gpu::gles2::ContextCreationAttribHelper /* attrib_helper */,
1053 gpu::Capabilities /* capabilities */, 1053 ppapi::HostResource /* result */,
1054 ppapi::proxy::SerializedHandle /* shared_state */, 1054 gpu::Capabilities /* capabilities */,
1055 gpu::CommandBufferId /* command_buffer_id */) 1055 ppapi::proxy::SerializedHandle /* shared_state */,
1056 gpu::CommandBufferId /* command_buffer_id */)
1056 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, 1057 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer,
1057 ppapi::HostResource /* context */, 1058 ppapi::HostResource /* context */,
1058 int32_t /* transfer_buffer_id */) 1059 int32_t /* transfer_buffer_id */)
1059 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange, 1060 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForTokenInRange,
1060 ppapi::HostResource /* context */, 1061 ppapi::HostResource /* context */,
1061 int32_t /* start */, 1062 int32_t /* start */,
1062 int32_t /* end */, 1063 int32_t /* end */,
1063 gpu::CommandBuffer::State /* state */, 1064 gpu::CommandBuffer::State /* state */,
1064 bool /* success */) 1065 bool /* success */)
1065 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange, 1066 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBGraphics3D_WaitForGetOffsetInRange,
(...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after
2523 std::vector<ppapi::HostResource> /* buffers */, 2524 std::vector<ppapi::HostResource> /* buffers */,
2524 uint32_t /* buffer_size */) 2525 uint32_t /* buffer_size */)
2525 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2526 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2526 uint32_t /* status */) 2527 uint32_t /* status */)
2527 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2528 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2528 uint32_t /* error */) 2529 uint32_t /* error */)
2529 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2530 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2530 uint32_t /* buffer */) 2531 uint32_t /* buffer */)
2531 2532
2532 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2533 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/ppapi_internal.gyp ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698