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

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

Issue 142023008: [PPAPI][MediaStream] Rename AudioFrame to AudioBuffer (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/media_stream_video_track_resource.cc ('k') | ppapi/proxy/video_frame_resource.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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 PP_IsolatedFileSystemType_Private /* type */) 1435 PP_IsolatedFileSystemType_Private /* type */)
1436 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, 1436 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply,
1437 std::string /* fsid */) 1437 std::string /* fsid */)
1438 1438
1439 // MediaStream ----------------------------------------------------------------- 1439 // MediaStream -----------------------------------------------------------------
1440 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost, 1440 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost,
1441 std::string /* track_id */) 1441 std::string /* track_id */)
1442 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, 1442 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost,
1443 std::string /* track_id */) 1443 std::string /* track_id */)
1444 1444
1445 // Message for init frames. It also takes a shared memory handle which is put in 1445 // Message for init buffers. It also takes a shared memory handle which is put
1446 // the outer ResourceReplyMessage. 1446 // in the outer ResourceReplyMessage.
1447 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, 1447 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitBuffers,
1448 int32_t /* number_of_frames */, 1448 int32_t /* number_of_buffers */,
1449 int32_t /* frame_size */) 1449 int32_t /* buffer_size */)
1450 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, 1450 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueBuffer,
1451 int32_t /* index */); 1451 int32_t /* index */);
1452 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, 1452 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueBuffer,
1453 int32_t /* index */); 1453 int32_t /* index */);
1454 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) 1454 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close)
1455 1455
1456 // NetworkMonitor. 1456 // NetworkMonitor.
1457 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create) 1457 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create)
1458 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList, 1458 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList,
1459 ppapi::proxy::SerializedNetworkList /* network_list */) 1459 ppapi::proxy::SerializedNetworkList /* network_list */)
1460 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_NetworkMonitor_Forbidden) 1460 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_NetworkMonitor_Forbidden)
1461 1461
1462 // NetworkProxy ---------------------------------------------------------------- 1462 // NetworkProxy ----------------------------------------------------------------
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2065 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2066 PP_TalkPermission /* permission */) 2066 PP_TalkPermission /* permission */)
2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2068 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2068 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2069 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2069 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2070 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2070 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2072 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2072 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2073 2073
2074 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2074 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/media_stream_video_track_resource.cc ('k') | ppapi/proxy/video_frame_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698