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

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: Update Created 6 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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) 1406 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
1407 1407
1408 // IsolatedFileSystem 1408 // IsolatedFileSystem
1409 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) 1409 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create)
1410 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, 1410 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen,
1411 PP_IsolatedFileSystemType_Private /* type */) 1411 PP_IsolatedFileSystemType_Private /* type */)
1412 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, 1412 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply,
1413 std::string /* fsid */) 1413 std::string /* fsid */)
1414 1414
1415 // MediaStream ----------------------------------------------------------------- 1415 // MediaStream -----------------------------------------------------------------
1416 // Message for init frames. It also takes a shared memory handle. 1416 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost,
1417 std::string /* track_id */)
1417 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, 1418 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost,
1418 std::string /* track_id */) 1419 std::string /* track_id */)
1420
1421 // Message for init frames. It also takes a shared memory handle.
1419 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, 1422 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames,
1420 int32_t /* number_of_frames */, 1423 int32_t /* number_of_frames */,
1421 int32_t /* frame_size */) 1424 int32_t /* frame_size */)
1422 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, 1425 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame,
1423 int32_t /* index */); 1426 int32_t /* index */);
1424 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, 1427 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame,
1425 int32_t /* index */); 1428 int32_t /* index */);
1426 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) 1429 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close)
1427 1430
1428 // NetworkMonitor. 1431 // NetworkMonitor.
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
2029 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2032 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2030 PP_TalkPermission /* permission */) 2033 PP_TalkPermission /* permission */)
2031 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2034 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2032 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2035 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2033 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2036 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2034 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2037 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2035 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2038 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2036 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2039 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2037 2040
2038 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2041 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698