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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1543 // Graphics2D, plugin -> host -> plugin 1543 // Graphics2D, plugin -> host -> plugin
1544 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_Flush, 1544 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_Flush,
1545 std::vector<ui::LatencyInfo> /* latency_info */) 1545 std::vector<ui::LatencyInfo> /* latency_info */)
1546 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) 1546 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck)
1547 1547
1548 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, 1548 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
1549 PP_Resource /* image */, 1549 PP_Resource /* image */,
1550 PP_Point /* top_left */) 1550 PP_Point /* top_left */)
1551 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) 1551 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
1552 1552
1553 // IsolatedFileSystem 1553 // ImageCapture ----------------------------------------------------------------
1554 // ImageCapture_Private, plugin -> host
1555 IPC_MESSAGE_CONTROL0(PpapiHostMsg_ImageCapture_Create)
1556 IPC_MESSAGE_CONTROL0(PpapiHostMsg_ImageCapture_Close)
1557
1558 // ImageCapture_Private, plugin -> host -> plugin
1559 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ImageCapture_Open,
1560 std::string /* camera_source_id */)
1561 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_ImageCapture_OpenReply)
1562
1563 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.
1564 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ImageCapture_GetPreviewSizesReply,
1565 std::vector<PP_Size> /* preview_sizes */)
1566
1567 // ImageCapture_Private, host -> plugin
1568
1569 // IsolatedFileSystem ----------------------------------------------------------
1554 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) 1570 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create)
1555 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, 1571 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen,
1556 PP_IsolatedFileSystemType_Private /* type */) 1572 PP_IsolatedFileSystemType_Private /* type */)
1557 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, 1573 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply,
1558 std::string /* fsid */) 1574 std::string /* fsid */)
1559 1575
1560 // MediaStream ----------------------------------------------------------------- 1576 // MediaStream -----------------------------------------------------------------
1561 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost, 1577 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost,
1562 std::string /* track_id */) 1578 std::string /* track_id */)
1563 IPC_MESSAGE_CONTROL1( 1579 IPC_MESSAGE_CONTROL1(
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
2245 PP_ImageDataDesc /* image_data_desc */) 2261 PP_ImageDataDesc /* image_data_desc */)
2246 2262
2247 // Called by the plugin when its selection changes. 2263 // Called by the plugin when its selection changes.
2248 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SetSelectedText, 2264 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SetSelectedText,
2249 base::string16 /* selected_text */) 2265 base::string16 /* selected_text */)
2250 2266
2251 // Called by the plugin to set the link under the cursor. 2267 // Called by the plugin to set the link under the cursor.
2252 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SetLinkUnderCursor, 2268 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SetLinkUnderCursor,
2253 std::string /* url */) 2269 std::string /* url */)
2254 2270
2271 // VideoCapture ----------------------------------------------------------------
2272
2255 // VideoCapture_Dev, plugin -> host 2273 // VideoCapture_Dev, plugin -> host
2256 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_Create) 2274 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_Create)
2257 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_StartCapture) 2275 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_StartCapture)
2258 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoCapture_ReuseBuffer, 2276 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoCapture_ReuseBuffer,
2259 uint32_t /* buffer */) 2277 uint32_t /* buffer */)
2260 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_StopCapture) 2278 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_StopCapture)
2261 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_Close) 2279 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoCapture_Close)
2262 2280
2263 // VideoCapture_Dev, plugin -> host -> plugin 2281 // VideoCapture_Dev, plugin -> host -> plugin
2264 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoCapture_Open, 2282 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoCapture_Open,
(...skipping 20 matching lines...) Expand all
2285 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2303 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2286 PP_TalkPermission /* permission */) 2304 PP_TalkPermission /* permission */)
2287 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2305 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2288 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2306 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2289 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2307 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2290 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2308 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2291 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2309 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2292 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2310 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2293 2311
2294 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2312 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698