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

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 6 years, 12 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 b2fa2af4b7867a044367cb781c08fe0e7b1325a6..2cc5949c9cdd2985e0d2ca7f090fd4d8ca72a571 100644
--- a/ppapi/proxy/ppapi_messages.h
+++ b/ppapi/proxy/ppapi_messages.h
@@ -1404,6 +1404,17 @@ IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
PP_Point /* top_left */)
IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
+// IOStreamResource -----------------------------------------------------------
+IPC_MESSAGE_CONTROL1(PpapiHostMsg_IOStream_Init,
yzshen1 2014/01/03 21:51:41 Please add comments: - Since there are two ways of
+ uint32_t /* size */)
+IPC_MESSAGE_CONTROL0(PpapiPluginMsg_IOStream_InitReply)
+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