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

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

Issue 10169040: Move the rest of the Flash functions to the thunk system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/interface_list.cc ('k') | ppapi/proxy/ppb_flash_file_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/file_path.h" 10 #include "base/file_path.h"
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData, 1185 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData,
1186 PP_Instance /* instance */, 1186 PP_Instance /* instance */,
1187 int /* clipboard_type */, 1187 int /* clipboard_type */,
1188 int /* format */, 1188 int /* format */,
1189 ppapi::proxy::SerializedVar /* result */) 1189 ppapi::proxy::SerializedVar /* result */)
1190 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData, 1190 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData,
1191 PP_Instance /* instance */, 1191 PP_Instance /* instance */,
1192 int /* clipboard_type */, 1192 int /* clipboard_type */,
1193 std::vector<int> /* formats */, 1193 std::vector<int> /* formats */,
1194 std::vector<ppapi::proxy::SerializedVar> /* data */) 1194 std::vector<ppapi::proxy::SerializedVar> /* data */)
1195 1195 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFile,
1196 // PPB_Flash_File_FileRef.
1197 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile,
1198 ppapi::HostResource /* file_ref */,
1199 int32_t /* mode */,
1200 IPC::PlatformFileForTransit /* file_handle */,
1201 int32_t /* result */)
1202 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile,
1203 ppapi::HostResource /* file_ref */,
1204 PP_FileInfo /* info */,
1205 int32_t /* result */)
1206
1207 // PPB_Flash_File_ModuleLocal.
1208 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_OpenFile,
1209 PP_Instance /* instance */, 1196 PP_Instance /* instance */,
1210 std::string /* path */, 1197 std::string /* path */,
1211 int32_t /* mode */, 1198 int32_t /* mode */,
1212 IPC::PlatformFileForTransit /* file_handle */, 1199 IPC::PlatformFileForTransit /* file_handle */,
1213 int32_t /* result */) 1200 int32_t /* result */)
1214 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashFile_ModuleLocal_RenameFile, 1201 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_RenameFile,
1215 PP_Instance /* instance */, 1202 PP_Instance /* instance */,
1216 std::string /* path_from */, 1203 std::string /* path_from */,
1217 std::string /* path_to */, 1204 std::string /* path_to */,
1218 int32_t /* result */) 1205 int32_t /* result */)
1219 IPC_SYNC_MESSAGE_ROUTED3_1( 1206 IPC_SYNC_MESSAGE_ROUTED3_1(
1220 PpapiHostMsg_PPBFlashFile_ModuleLocal_DeleteFileOrDir, 1207 PpapiHostMsg_PPBFlash_DeleteFileOrDir,
1221 PP_Instance /* instance */, 1208 PP_Instance /* instance */,
1222 std::string /* path */, 1209 std::string /* path */,
1223 PP_Bool /* recursive */, 1210 PP_Bool /* recursive */,
1224 int32_t /* result */) 1211 int32_t /* result */)
1225 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashFile_ModuleLocal_CreateDir, 1212 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_CreateDir,
1226 PP_Instance /* instance */, 1213 PP_Instance /* instance */,
1227 std::string /* path */, 1214 std::string /* path */,
1228 int32_t /* result */) 1215 int32_t /* result */)
1229 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_ModuleLocal_QueryFile, 1216 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFile,
1230 PP_Instance /* instance */, 1217 PP_Instance /* instance */,
1231 std::string /* path */, 1218 std::string /* path */,
1232 PP_FileInfo /* info */, 1219 PP_FileInfo /* info */,
1233 int32_t /* result */) 1220 int32_t /* result */)
1234 IPC_SYNC_MESSAGE_ROUTED2_2( 1221 IPC_SYNC_MESSAGE_ROUTED2_2(
1235 PpapiHostMsg_PPBFlashFile_ModuleLocal_GetDirContents, 1222 PpapiHostMsg_PPBFlash_GetDirContents,
1236 PP_Instance /* instance */, 1223 PP_Instance /* instance */,
1237 std::string /* path */, 1224 std::string /* path */,
1238 std::vector<ppapi::proxy::SerializedDirEntry> /* entries */, 1225 std::vector<ppapi::proxy::SerializedDirEntry> /* entries */,
1239 int32_t /* result */) 1226 int32_t /* result */)
1227 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef,
1228 PP_Instance /* instance */,
1229 ppapi::HostResource /* file_ref */,
1230 int32_t /* mode */,
1231 IPC::PlatformFileForTransit /* file_handle */,
1232 int32_t /* result */)
1233 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef,
1234 PP_Instance /* instance */,
1235 ppapi::HostResource /* file_ref */,
1236 PP_FileInfo /* info */,
1237 int32_t /* result */)
1240 1238
1241 // PPB_Flash_Menu 1239 // PPB_Flash_Menu
1242 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create, 1240 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create,
1243 PP_Instance /* instance */, 1241 PP_Instance /* instance */,
1244 ppapi::proxy::SerializedFlashMenu /* menu_data */, 1242 ppapi::proxy::SerializedFlashMenu /* menu_data */,
1245 ppapi::HostResource /* result */) 1243 ppapi::HostResource /* result */)
1246 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, 1244 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show,
1247 ppapi::HostResource /* menu */, 1245 ppapi::HostResource /* menu */,
1248 PP_Point /* location */) 1246 PP_Point /* location */)
1249 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, 1247 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 // PPB_X509Certificate_Private 1323 // PPB_X509Certificate_Private
1326 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1324 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1327 std::vector<char> /* der */, 1325 std::vector<char> /* der */,
1328 bool /* succeeded */, 1326 bool /* succeeded */,
1329 ppapi::PPB_X509Certificate_Fields /* result */) 1327 ppapi::PPB_X509Certificate_Fields /* result */)
1330 1328
1331 // PPB_Font. 1329 // PPB_Font.
1332 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1330 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1333 std::string /* result */) 1331 std::string /* result */)
1334 #endif // !defined(OS_NACL) 1332 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_file_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698