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

Unified Diff: ppapi/proxy/ppapi_messages_internal.h

Issue 6543028: Implement the filesystem proxy. This allows the FileRef tests to pass in the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/proxy/ppapi_messages_internal.h
===================================================================
--- ppapi/proxy/ppapi_messages_internal.h (revision 75471)
+++ ppapi/proxy/ppapi_messages_internal.h (working copy)
@@ -53,6 +53,12 @@
int32_t /* result_code (will be != PP_OK on failure */,
std::vector<pp::proxy::PPBFileRef_CreateInfo> /* chosen_files */)
+// PPB_FileSystem.
+IPC_MESSAGE_ROUTED2(
+ PpapiMsg_PPBFileSystem_OpenComplete,
+ pp::proxy::HostResource /* filesystem */,
+ int32_t /* result */)
+
// PPB_Graphics2D.
IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK,
pp::proxy::HostResource /* graphics_2d */,
@@ -318,6 +324,15 @@
pp::proxy::HostResource /* new_file_ref */,
uint32_t /* serialized_callback */);
+// PPB_FileSystem.
+IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create,
+ PP_Instance /* instance */,
+ int /* type */,
+ pp::proxy::HostResource /* result */)
+IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open,
+ pp::proxy::HostResource /* result */,
+ int64_t /* expected_size */)
+
// PPB_Flash.
IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlash_SetInstanceAlwaysOnTop,
PP_Instance /* instance */,
@@ -570,7 +585,7 @@
pp::proxy::SerializedVar /* result */)
IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef,
pp::proxy::HostResource /* response */,
- pp::proxy::HostResource /* file_ref_result */)
+ pp::proxy::PPBFileRef_CreateInfo /* result */)
// PPB_Var.
IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_AddRefObject,

Powered by Google App Engine
This is Rietveld 408576698