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

Unified Diff: ppapi/proxy/ppapi_messages_internal.h

Issue 4752008: Add proxies for some of the PDF & Flash functionality. There are still a few... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppapi_messages.cc ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppapi_messages_internal.h
===================================================================
--- ppapi/proxy/ppapi_messages_internal.h (revision 65847)
+++ ppapi/proxy/ppapi_messages_internal.h (working copy)
@@ -137,6 +137,13 @@
IPC_MESSAGE_CONTROL1(PpapiHostMsg_PluginLoaded,
IPC::ChannelHandle /* handle */)
+ // PPB_Buffer.
+ IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create,
+ PP_Module /* module */,
+ int32_t /* size */,
+ PP_Resource /* result_resource */,
+ uint64_t /* result_shm_handle */)
+
// PPB_Core.
IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, PP_Resource)
IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, PP_Resource)
@@ -158,6 +165,53 @@
PP_Module /* module */,
pp::proxy::SerializedVar /* result */)
+ // PPB_Flash.
+ IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlash_SetInstanceAlwaysOnTop,
+ PP_Instance /* instance */,
+ bool /* on_top */)
+ IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFlash_DrawGlyphs,
+ pp::proxy::PPBFlash_DrawGlyphs_Params /* params */)
+ IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL,
+ PP_Module /* module */,
+ std::string /* url */,
+ pp::proxy::SerializedVar /* result */)
+ IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenModuleLocalFile,
+ PP_Module /* module */,
+ std::string /* path */,
+ int32_t /* mode */,
+ IPC::PlatformFileForTransit /* file_handle */,
+ int32_t /* result */)
+ IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_RenameModuleLocalFile,
+ PP_Module /* module */,
+ std::string /* path_from */,
+ std::string /* path_to */,
+ int32_t /* result */)
+ IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_DeleteModuleLocalFileOrDir,
+ PP_Module /* module */,
+ std::string /* path */,
+ bool /* recursive */,
+ int32_t /* result */)
+ IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_CreateModuleLocalDir,
+ PP_Module /* module */,
+ std::string /* path */,
+ int32_t /* result */)
+ IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryModuleLocalFile,
+ PP_Module /* module */,
+ std::string /* path */,
+ PP_FileInfo_Dev /* info */,
+ int32_t /* result */)
+ IPC_SYNC_MESSAGE_ROUTED2_2(
+ PpapiHostMsg_PPBFlash_GetModuleLocalDirContents,
+ PP_Module /* module */,
+ std::string /* path */,
+ std::vector<pp::proxy::SerializedDirEntry> /* entries */,
+ int32_t /* result */)
+ IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_NavigateToURL,
+ PP_Instance /* instance */,
+ std::string /* url */,
+ std::string /* target */,
+ bool /* result */)
+
// PPB_Font.
IPC_SYNC_MESSAGE_ROUTED2_3(
PpapiHostMsg_PPBFont_Create,
@@ -254,6 +308,18 @@
pp::proxy::SerializedVar /* out_exception */,
pp::proxy::SerializedVar /* result */)
+ IPC_SYNC_MESSAGE_ROUTED3_1(
+ PpapiHostMsg_PPBPdf_GetFontFileWithFallback,
+ PP_Module /* module */,
+ pp::proxy::SerializedFontDescription /* description */,
+ int32_t /* charset */,
+ PP_Resource /* result */)
+ IPC_SYNC_MESSAGE_ROUTED2_1(
+ PpapiHostMsg_PPBPdf_GetFontTableForPrivateFontFile,
+ PP_Resource /* font_file */,
+ uint32_t /* table */,
+ std::string /* result */)
+
// PPB_Testing.
IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBTesting_ReadImageData,
PP_Resource /* device_context_2d */,
« no previous file with comments | « ppapi/proxy/ppapi_messages.cc ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698