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

Unified Diff: ppapi/proxy/ppapi_messages.h

Issue 848863002: PPAPI: implement GetSupportedPreviewSizes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error on Linux build Created 5 years, 11 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 2b881ce6aae3ac45ecb1a70adb90f9e72237298e..1b969b8f2eee14763f8a5c321ed66e152df69862 100644
--- a/ppapi/proxy/ppapi_messages.h
+++ b/ppapi/proxy/ppapi_messages.h
@@ -1550,7 +1550,23 @@ IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
PP_Point /* top_left */)
IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
-// IsolatedFileSystem
+// ImageCapture ----------------------------------------------------------------
+// ImageCapture_Private, plugin -> host
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_ImageCapture_Create)
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_ImageCapture_Close)
+
+// ImageCapture_Private, plugin -> host -> plugin
+IPC_MESSAGE_CONTROL1(PpapiHostMsg_ImageCapture_Open,
+ std::string /* camera_source_id */)
+IPC_MESSAGE_CONTROL0(PpapiPluginMsg_ImageCapture_OpenReply)
+
+IPC_MESSAGE_CONTROL0(PpapiPluginMsg_ImageCapture_GetPreviewSizes)
wuchengli 2015/01/19 14:05:03 s/GetPreviewSizes/GetSupportedPreviewSizes/. Same
Justin Chuang 2015/01/26 15:00:51 Done.
+IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ImageCapture_GetPreviewSizesReply,
+ std::vector<PP_Size> /* preview_sizes */)
+
+// ImageCapture_Private, host -> plugin
+
+// IsolatedFileSystem ----------------------------------------------------------
IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create)
IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen,
PP_IsolatedFileSystemType_Private /* type */)
@@ -2252,6 +2268,8 @@ IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SetSelectedText,
IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SetLinkUnderCursor,
std::string /* url */)
+// VideoCapture ----------------------------------------------------------------
+
// VideoCapture_Dev, plugin -> host
IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_Create)
IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_StartCapture)

Powered by Google App Engine
This is Rietveld 408576698