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

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
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 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 ppapi::HostResource /* graphics_2d */, 825 ppapi::HostResource /* graphics_2d */,
826 bool /* clip_specified */, 826 bool /* clip_specified */,
827 PP_Rect /* clip */, 827 PP_Rect /* clip */,
828 PP_Point /* amount */) 828 PP_Point /* amount */)
829 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents, 829 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics2D_ReplaceContents,
830 ppapi::HostResource /* graphics_2d */, 830 ppapi::HostResource /* graphics_2d */,
831 ppapi::HostResource /* image_data */) 831 ppapi::HostResource /* image_data */)
832 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush, 832 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics2D_Flush,
833 ppapi::HostResource /* graphics_2d */) 833 ppapi::HostResource /* graphics_2d */)
834 834
835 #if !defined(OS_NACL)
835 // PPB_Graphics3D. 836 // PPB_Graphics3D.
836 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create, 837 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBGraphics3D_Create,
837 PP_Instance /* instance */, 838 PP_Instance /* instance */,
838 ppapi::HostResource /* share_context */, 839 ppapi::HostResource /* share_context */,
839 std::vector<int32_t> /* attrib_list */, 840 std::vector<int32_t> /* attrib_list */,
840 ppapi::HostResource /* result */) 841 ppapi::HostResource /* result */)
841 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer, 842 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_InitCommandBuffer,
842 ppapi::HostResource /* context */) 843 ppapi::HostResource /* context */)
843 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer, 844 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_SetGetBuffer,
844 ppapi::HostResource /* context */, 845 ppapi::HostResource /* context */,
(...skipping 18 matching lines...) Expand all
863 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 864 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
864 ppapi::HostResource /* context */, 865 ppapi::HostResource /* context */,
865 int32 /* id */) 866 int32 /* id */)
866 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer, 867 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_GetTransferBuffer,
867 ppapi::HostResource /* context */, 868 ppapi::HostResource /* context */,
868 int32 /* id */, 869 int32 /* id */,
869 base::SharedMemoryHandle /* transfer_buffer */, 870 base::SharedMemoryHandle /* transfer_buffer */,
870 uint32 /* size */) 871 uint32 /* size */)
871 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 872 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
872 ppapi::HostResource /* graphics_3d */) 873 ppapi::HostResource /* graphics_3d */)
874 #endif // !defined(OS_NACL)
873 875
874 // PPB_ImageData. 876 // PPB_ImageData.
875 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, 877 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create,
876 PP_Instance /* instance */, 878 PP_Instance /* instance */,
877 int32 /* format */, 879 int32 /* format */,
878 PP_Size /* size */, 880 PP_Size /* size */,
879 PP_Bool /* init_to_zero */, 881 PP_Bool /* init_to_zero */,
880 ppapi::HostResource /* result_resource */, 882 ppapi::HostResource /* result_resource */,
881 std::string /* image_data_desc */, 883 std::string /* image_data_desc */,
882 ppapi::proxy::ImageHandle /* result */) 884 ppapi::proxy::ImageHandle /* result */)
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1358 // PPB_X509Certificate_Private 1360 // PPB_X509Certificate_Private
1359 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1361 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1360 std::vector<char> /* der */, 1362 std::vector<char> /* der */,
1361 bool /* succeeded */, 1363 bool /* succeeded */,
1362 ppapi::PPB_X509Certificate_Fields /* result */) 1364 ppapi::PPB_X509Certificate_Fields /* result */)
1363 1365
1364 // PPB_Font. 1366 // PPB_Font.
1365 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1367 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1366 std::string /* result */) 1368 std::string /* result */)
1367 #endif // !defined(OS_NACL) 1369 #endif // !defined(OS_NACL)
OLDNEW
« ppapi/proxy/plugin_main_nacl.cc ('K') | « ppapi/proxy/plugin_main_nacl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698