OLD | NEW |
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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 | 902 |
903 // PPB_ImageData. | 903 // PPB_ImageData. |
904 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, | 904 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_Create, |
905 PP_Instance /* instance */, | 905 PP_Instance /* instance */, |
906 int32 /* format */, | 906 int32 /* format */, |
907 PP_Size /* size */, | 907 PP_Size /* size */, |
908 PP_Bool /* init_to_zero */, | 908 PP_Bool /* init_to_zero */, |
909 ppapi::HostResource /* result_resource */, | 909 ppapi::HostResource /* result_resource */, |
910 std::string /* image_data_desc */, | 910 std::string /* image_data_desc */, |
911 ppapi::proxy::ImageHandle /* result */) | 911 ppapi::proxy::ImageHandle /* result */) |
| 912 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreateNaCl, |
| 913 PP_Instance /* instance */, |
| 914 int32 /* format */, |
| 915 PP_Size /* size */, |
| 916 PP_Bool /* init_to_zero */, |
| 917 ppapi::HostResource /* result_resource */, |
| 918 std::string /* image_data_desc */, |
| 919 base::SharedMemoryHandle /* result */) |
912 | 920 |
913 // PPB_Instance. | 921 // PPB_Instance. |
914 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, | 922 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetWindowObject, |
915 PP_Instance /* instance */, | 923 PP_Instance /* instance */, |
916 ppapi::proxy::SerializedVar /* result */) | 924 ppapi::proxy::SerializedVar /* result */) |
917 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, | 925 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetOwnerElementObject, |
918 PP_Instance /* instance */, | 926 PP_Instance /* instance */, |
919 ppapi::proxy::SerializedVar /* result */) | 927 ppapi::proxy::SerializedVar /* result */) |
920 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, | 928 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_BindGraphics, |
921 PP_Instance /* instance */, | 929 PP_Instance /* instance */, |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 | 1437 |
1430 // File chooser. | 1438 // File chooser. |
1431 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) | 1439 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) |
1432 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, | 1440 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, |
1433 bool /* save_as */, | 1441 bool /* save_as */, |
1434 bool /* open_multiple */, | 1442 bool /* open_multiple */, |
1435 std::string /* suggested_file_name */, | 1443 std::string /* suggested_file_name */, |
1436 std::vector<std::string> /* accept_mime_types */) | 1444 std::vector<std::string> /* accept_mime_types */) |
1437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, | 1445 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, |
1438 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) | 1446 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) |
OLD | NEW |