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 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1188 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData, | 1188 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData, |
1189 PP_Instance /* instance */, | 1189 PP_Instance /* instance */, |
1190 int /* clipboard_type */, | 1190 int /* clipboard_type */, |
1191 int /* format */, | 1191 int /* format */, |
1192 ppapi::proxy::SerializedVar /* result */) | 1192 ppapi::proxy::SerializedVar /* result */) |
1193 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData, | 1193 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData, |
1194 PP_Instance /* instance */, | 1194 PP_Instance /* instance */, |
1195 int /* clipboard_type */, | 1195 int /* clipboard_type */, |
1196 std::vector<int> /* formats */, | 1196 std::vector<int> /* formats */, |
1197 std::vector<ppapi::proxy::SerializedVar> /* data */) | 1197 std::vector<ppapi::proxy::SerializedVar> /* data */) |
1198 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFile, | |
1199 PP_Instance /* instance */, | |
1200 std::string /* path */, | |
1201 int32_t /* mode */, | |
1202 IPC::PlatformFileForTransit /* file_handle */, | |
1203 int32_t /* result */) | |
1204 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_RenameFile, | |
1205 PP_Instance /* instance */, | |
1206 std::string /* path_from */, | |
1207 std::string /* path_to */, | |
1208 int32_t /* result */) | |
1209 IPC_SYNC_MESSAGE_ROUTED3_1( | |
1210 PpapiHostMsg_PPBFlash_DeleteFileOrDir, | |
1211 PP_Instance /* instance */, | |
1212 std::string /* path */, | |
1213 PP_Bool /* recursive */, | |
1214 int32_t /* result */) | |
1215 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_CreateDir, | |
1216 PP_Instance /* instance */, | |
1217 std::string /* path */, | |
1218 int32_t /* result */) | |
1219 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFile, | |
1220 PP_Instance /* instance */, | |
1221 std::string /* path */, | |
1222 PP_FileInfo /* info */, | |
1223 int32_t /* result */) | |
1224 IPC_SYNC_MESSAGE_ROUTED2_2( | |
1225 PpapiHostMsg_PPBFlash_GetDirContents, | |
1226 PP_Instance /* instance */, | |
1227 std::string /* path */, | |
1228 std::vector<ppapi::proxy::SerializedDirEntry> /* entries */, | |
1229 int32_t /* result */) | |
1230 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, | 1198 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, |
1231 PP_Instance /* instance */, | 1199 PP_Instance /* instance */, |
1232 ppapi::HostResource /* file_ref */, | 1200 ppapi::HostResource /* file_ref */, |
1233 int32_t /* mode */, | 1201 int32_t /* mode */, |
1234 IPC::PlatformFileForTransit /* file_handle */, | 1202 IPC::PlatformFileForTransit /* file_handle */, |
1235 int32_t /* result */) | 1203 int32_t /* result */) |
1236 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef, | 1204 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef, |
1237 PP_Instance /* instance */, | 1205 PP_Instance /* instance */, |
1238 ppapi::HostResource /* file_ref */, | 1206 ppapi::HostResource /* file_ref */, |
1239 PP_FileInfo /* info */, | 1207 PP_FileInfo /* info */, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 // PPB_X509Certificate_Private | 1296 // PPB_X509Certificate_Private |
1329 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1297 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
1330 std::vector<char> /* der */, | 1298 std::vector<char> /* der */, |
1331 bool /* succeeded */, | 1299 bool /* succeeded */, |
1332 ppapi::PPB_X509Certificate_Fields /* result */) | 1300 ppapi::PPB_X509Certificate_Fields /* result */) |
1333 | 1301 |
1334 // PPB_Font. | 1302 // PPB_Font. |
1335 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1303 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1336 std::string /* result */) | 1304 std::string /* result */) |
1337 #endif // !defined(OS_NACL) | 1305 #endif // !defined(OS_NACL) |
OLD | NEW |