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 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData, | 1201 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData, |
1202 PP_Instance /* instance */, | 1202 PP_Instance /* instance */, |
1203 int /* clipboard_type */, | 1203 int /* clipboard_type */, |
1204 int /* format */, | 1204 int /* format */, |
1205 ppapi::proxy::SerializedVar /* result */) | 1205 ppapi::proxy::SerializedVar /* result */) |
1206 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData, | 1206 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData, |
1207 PP_Instance /* instance */, | 1207 PP_Instance /* instance */, |
1208 int /* clipboard_type */, | 1208 int /* clipboard_type */, |
1209 std::vector<int> /* formats */, | 1209 std::vector<int> /* formats */, |
1210 std::vector<ppapi::proxy::SerializedVar> /* data */) | 1210 std::vector<ppapi::proxy::SerializedVar> /* data */) |
1211 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFile, | |
1212 PP_Instance /* instance */, | |
1213 std::string /* path */, | |
1214 int32_t /* mode */, | |
1215 IPC::PlatformFileForTransit /* file_handle */, | |
1216 int32_t /* result */) | |
1217 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_RenameFile, | |
1218 PP_Instance /* instance */, | |
1219 std::string /* path_from */, | |
1220 std::string /* path_to */, | |
1221 int32_t /* result */) | |
1222 IPC_SYNC_MESSAGE_ROUTED3_1( | |
1223 PpapiHostMsg_PPBFlash_DeleteFileOrDir, | |
1224 PP_Instance /* instance */, | |
1225 std::string /* path */, | |
1226 PP_Bool /* recursive */, | |
1227 int32_t /* result */) | |
1228 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_CreateDir, | |
1229 PP_Instance /* instance */, | |
1230 std::string /* path */, | |
1231 int32_t /* result */) | |
1232 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFile, | |
1233 PP_Instance /* instance */, | |
1234 std::string /* path */, | |
1235 PP_FileInfo /* info */, | |
1236 int32_t /* result */) | |
1237 IPC_SYNC_MESSAGE_ROUTED2_2( | |
1238 PpapiHostMsg_PPBFlash_GetDirContents, | |
1239 PP_Instance /* instance */, | |
1240 std::string /* path */, | |
1241 std::vector<ppapi::proxy::SerializedDirEntry> /* entries */, | |
1242 int32_t /* result */) | |
1243 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, | 1211 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, |
1244 PP_Instance /* instance */, | 1212 PP_Instance /* instance */, |
1245 ppapi::HostResource /* file_ref */, | 1213 ppapi::HostResource /* file_ref */, |
1246 int32_t /* mode */, | 1214 int32_t /* mode */, |
1247 IPC::PlatformFileForTransit /* file_handle */, | 1215 IPC::PlatformFileForTransit /* file_handle */, |
1248 int32_t /* result */) | 1216 int32_t /* result */) |
1249 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef, | 1217 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef, |
1250 PP_Instance /* instance */, | 1218 PP_Instance /* instance */, |
1251 ppapi::HostResource /* file_ref */, | 1219 ppapi::HostResource /* file_ref */, |
1252 PP_FileInfo /* info */, | 1220 PP_FileInfo /* info */, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 // PPB_X509Certificate_Private | 1309 // PPB_X509Certificate_Private |
1342 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1310 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
1343 std::vector<char> /* der */, | 1311 std::vector<char> /* der */, |
1344 bool /* succeeded */, | 1312 bool /* succeeded */, |
1345 ppapi::PPB_X509Certificate_Fields /* result */) | 1313 ppapi::PPB_X509Certificate_Fields /* result */) |
1346 | 1314 |
1347 // PPB_Font. | 1315 // PPB_Font. |
1348 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1316 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1349 std::string /* result */) | 1317 std::string /* result */) |
1350 #endif // !defined(OS_NACL) | 1318 #endif // !defined(OS_NACL) |
OLD | NEW |