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

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

Issue 16605006: Clean up Pepper ImageData resource class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add NOTREACHED if creating PlatformImageData in NaCl. Created 7 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/pdf_resource.cc ('k') | ppapi/proxy/ppb_image_data_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 <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/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 ppapi::HostResource /* context */, 874 ppapi::HostResource /* context */,
875 int32 /* id */, 875 int32 /* id */,
876 ppapi::proxy::SerializedHandle /* transfer_buffer */) 876 ppapi::proxy::SerializedHandle /* transfer_buffer */)
877 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 877 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
878 ppapi::HostResource /* graphics_3d */) 878 ppapi::HostResource /* graphics_3d */)
879 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, 879 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint,
880 ppapi::HostResource /* context */, 880 ppapi::HostResource /* context */,
881 uint32 /* sync_point */) 881 uint32 /* sync_point */)
882 882
883 // PPB_ImageData. 883 // PPB_ImageData.
884 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, 884 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform,
885 PP_Instance /* instance */, 885 PP_Instance /* instance */,
886 int32 /* format */, 886 int32 /* format */,
887 PP_Size /* size */, 887 PP_Size /* size */,
888 PP_Bool /* init_to_zero */, 888 PP_Bool /* init_to_zero */,
889 ppapi::HostResource /* result_resource */, 889 ppapi::HostResource /* result_resource */,
890 std::string /* image_data_desc */, 890 PP_ImageDataDesc /* image_data_desc */,
891 ppapi::proxy::ImageHandle /* result */) 891 ppapi::proxy::ImageHandle /* result */)
892 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreateNaCl, 892 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreateSimple,
893 PP_Instance /* instance */, 893 PP_Instance /* instance */,
894 int32 /* format */, 894 int32 /* format */,
895 PP_Size /* size */, 895 PP_Size /* size */,
896 PP_Bool /* init_to_zero */, 896 PP_Bool /* init_to_zero */,
897 ppapi::HostResource /* result_resource */, 897 ppapi::HostResource /* result_resource */,
898 std::string /* image_data_desc */, 898 PP_ImageDataDesc /* image_data_desc */,
899 ppapi::proxy::SerializedHandle /* result */) 899 ppapi::proxy::SerializedHandle /* result */)
900 900
901 // PPB_Instance. 901 // PPB_Instance.
902 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, 902 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject,
903 PP_Instance /* instance */, 903 PP_Instance /* instance */,
904 ppapi::proxy::SerializedVar /* result */) 904 ppapi::proxy::SerializedVar /* result */)
905 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, 905 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject,
906 PP_Instance /* instance */, 906 PP_Instance /* instance */,
907 ppapi::proxy::SerializedVar /* result */) 907 ppapi::proxy::SerializedVar /* result */)
908 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_BindGraphics, 908 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_BindGraphics,
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) 1922 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply)
1923 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) 1923 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame)
1924 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, 1924 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply,
1925 ppapi::HostResource /* resource_id */, 1925 ppapi::HostResource /* resource_id */,
1926 PP_ImageDataDesc /* image_data_desc */, 1926 PP_ImageDataDesc /* image_data_desc */,
1927 int /* fd */, 1927 int /* fd */,
1928 PP_TimeTicks /* timestamp */) 1928 PP_TimeTicks /* timestamp */)
1929 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) 1929 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close)
1930 1930
1931 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1931 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/pdf_resource.cc ('k') | ppapi/proxy/ppb_image_data_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698