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

Unified Diff: ppapi/proxy/ppapi_messages.h

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/proxy/ppapi_messages.h
diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h
index 78f9edab6f79c1422c7516682c56bd159242ea95..d93ac0f1b94e54cc271949370483ab6b8933c219 100644
--- a/ppapi/proxy/ppapi_messages.h
+++ b/ppapi/proxy/ppapi_messages.h
@@ -1344,6 +1344,17 @@ IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call,
IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply,
base::ListValue /* output */)
+// Ext_CrxFileSystem
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_Ext_CrxFileSystem_Create)
+IPC_MESSAGE_CONTROL0(PpapiBrowserHostMsg_Ext_CrxFileSystem_Open)
yzshen1 2013/04/30 19:31:19 It is better to keep the first part of the msg nam
victorhsieh 2013/04/30 22:04:32 Done.
+IPC_MESSAGE_CONTROL2(PpapiPluginMsg_Ext_CrxFileSystem_BrowserOpenReply,
+ std::string /* extension_id */,
+ std::string /* fsid */)
+IPC_MESSAGE_CONTROL2(PpapiRendererHostMsg_Ext_CrxFileSystem_Open,
+ std::string /* extension_id */,
+ std::string /* fsid */)
+IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Ext_CrxFileSystem_RendererOpenReply)
+
// File chooser.
IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,

Powered by Google App Engine
This is Rietveld 408576698