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

Unified Diff: ppapi/proxy/ppapi_messages.h

Issue 119853003: [PPAPI] Implement an IOStreamResource for data transmission between plugin and renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 7 years 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 ca4ea367de6e99b22abbe27171c283cc3dcf4914..0ea28f9893e7fb2f168504bd8bc910d385cce362 100644
--- a/ppapi/proxy/ppapi_messages.h
+++ b/ppapi/proxy/ppapi_messages.h
@@ -1394,6 +1394,16 @@ IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
PP_Point /* top_left */)
IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
+// IOStreamResource -----------------------------------------------------------
+IPC_MESSAGE_CONTROL1(PpapiHostMsg_IOStream_Init,
+ uint32_t /* size */)
+IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IOStream_Init,
+ uint32_t /* size */)
+IPC_MESSAGE_CONTROL1(PpapiHostMsg_IOStream_MoveLimit,
+ uint32_t /* offset */)
+IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IOStream_MoveLimit,
+ uint32_t /* offset */)
+
// IsolatedFileSystem
IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create)
IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen,

Powered by Google App Engine
This is Rietveld 408576698