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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 140783004: [PPAPI] Pepper MediaStream API audio track implementation and example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review issues Created 6 years, 10 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
« no previous file with comments | « ppapi/proxy/plugin_var_tracker.cc ('k') | ppapi/shared_impl/media_stream_frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) 1427 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
1428 1428
1429 // IsolatedFileSystem 1429 // IsolatedFileSystem
1430 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) 1430 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create)
1431 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, 1431 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen,
1432 PP_IsolatedFileSystemType_Private /* type */) 1432 PP_IsolatedFileSystemType_Private /* type */)
1433 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, 1433 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply,
1434 std::string /* fsid */) 1434 std::string /* fsid */)
1435 1435
1436 // MediaStream ----------------------------------------------------------------- 1436 // MediaStream -----------------------------------------------------------------
1437 // Message for init frames. It also takes a shared memory handle. 1437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost,
1438 std::string /* track_id */)
1438 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, 1439 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost,
1439 std::string /* track_id */) 1440 std::string /* track_id */)
1441
1442 // Message for init frames. It also takes a shared memory handle which is put in
1443 // the outer ResourceReplyMessage.
1440 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, 1444 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames,
1441 int32_t /* number_of_frames */, 1445 int32_t /* number_of_frames */,
1442 int32_t /* frame_size */) 1446 int32_t /* frame_size */)
1443 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, 1447 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame,
1444 int32_t /* index */); 1448 int32_t /* index */);
1445 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, 1449 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame,
1446 int32_t /* index */); 1450 int32_t /* index */);
1447 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) 1451 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close)
1448 1452
1449 // NetworkMonitor. 1453 // NetworkMonitor.
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
2058 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2062 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2059 PP_TalkPermission /* permission */) 2063 PP_TalkPermission /* permission */)
2060 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2064 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2061 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2065 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2062 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2066 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2063 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2067 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2064 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2068 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2065 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2069 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2066 2070
2067 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2071 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_var_tracker.cc ('k') | ppapi/shared_impl/media_stream_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698