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

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

Issue 10546140: Add untrusted NaCl build for PPAPI proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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/plugin_main_nacl.cc ('k') | no next file » | 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 <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 ppapi::HostResource /* graphics_2d */, 839 ppapi::HostResource /* graphics_2d */,
840 bool /* clip_specified */, 840 bool /* clip_specified */,
841 PP_Rect /* clip */, 841 PP_Rect /* clip */,
842 PP_Point /* amount */) 842 PP_Point /* amount */)
843 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, 843 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents,
844 ppapi::HostResource /* graphics_2d */, 844 ppapi::HostResource /* graphics_2d */,
845 ppapi::HostResource /* image_data */) 845 ppapi::HostResource /* image_data */)
846 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, 846 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush,
847 ppapi::HostResource /* graphics_2d */) 847 ppapi::HostResource /* graphics_2d */)
848 848
849 #if !defined(OS_NACL)
849 // PPB_Graphics3D. 850 // PPB_Graphics3D.
850 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, 851 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create,
851 PP_Instance /* instance */, 852 PP_Instance /* instance */,
852 ppapi::HostResource /* share_context */, 853 ppapi::HostResource /* share_context */,
853 std::vector<int32_t> /* attrib_list */, 854 std::vector<int32_t> /* attrib_list */,
854 ppapi::HostResource /* result */) 855 ppapi::HostResource /* result */)
855 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, 856 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer,
856 ppapi::HostResource /* context */) 857 ppapi::HostResource /* context */)
857 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, 858 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer,
858 ppapi::HostResource /* context */, 859 ppapi::HostResource /* context */,
(...skipping 18 matching lines...) Expand all
877 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 878 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
878 ppapi::HostResource /* context */, 879 ppapi::HostResource /* context */,
879 int32 /* id */) 880 int32 /* id */)
880 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, 881 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer,
881 ppapi::HostResource /* context */, 882 ppapi::HostResource /* context */,
882 int32 /* id */, 883 int32 /* id */,
883 base::SharedMemoryHandle /* transfer_buffer */, 884 base::SharedMemoryHandle /* transfer_buffer */,
884 uint32 /* size */) 885 uint32 /* size */)
885 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 886 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
886 ppapi::HostResource /* graphics_3d */) 887 ppapi::HostResource /* graphics_3d */)
888 #endif // !defined(OS_NACL)
887 889
888 // PPB_ImageData. 890 // PPB_ImageData.
889 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, 891 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create,
890 PP_Instance /* instance */, 892 PP_Instance /* instance */,
891 int32 /* format */, 893 int32 /* format */,
892 PP_Size /* size */, 894 PP_Size /* size */,
893 PP_Bool /* init_to_zero */, 895 PP_Bool /* init_to_zero */,
894 ppapi::HostResource /* result_resource */, 896 ppapi::HostResource /* result_resource */,
895 std::string /* image_data_desc */, 897 std::string /* image_data_desc */,
896 ppapi::proxy::ImageHandle /* result */) 898 ppapi::proxy::ImageHandle /* result */)
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 // PPB_X509Certificate_Private 1378 // PPB_X509Certificate_Private
1377 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1379 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1378 std::vector<char> /* der */, 1380 std::vector<char> /* der */,
1379 bool /* succeeded */, 1381 bool /* succeeded */,
1380 ppapi::PPB_X509Certificate_Fields /* result */) 1382 ppapi::PPB_X509Certificate_Fields /* result */)
1381 1383
1382 // PPB_Font. 1384 // PPB_Font.
1383 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1385 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1384 std::string /* result */) 1386 std::string /* result */)
1385 #endif // !defined(OS_NACL) 1387 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_main_nacl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698