Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index a66b2b2bc709a017a1c1785ba3a0e639c7f997a9..332e13763e5d0b9e58262226bff0b943dc44435d 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -216,6 +216,14 @@ IPC_MESSAGE_ROUTED5(PpapiMsg_PPBAudio_NotifyAudioStreamCreated, |
| base::SharedMemoryHandle /* handle */, |
| int32_t /* length */) |
| +// PPB_AudioInput_Dev. |
| +IPC_MESSAGE_ROUTED5(PpapiMsg_PPBAudioInput_NotifyAudioStreamCreated, |
| + ppapi::HostResource /* audio_id */, |
| + int32_t /* result_code (will be != PP_OK on failure) */, |
| + IPC::PlatformFileForTransit /* socket_handle */, |
| + base::SharedMemoryHandle /* handle */, |
| + int32_t /* length */) |
| + |
| // PPB_Broker. |
| IPC_MESSAGE_ROUTED3( |
| PpapiMsg_PPBBroker_ConnectComplete, |
| @@ -490,6 +498,16 @@ IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBAudio_StartOrStop, |
| ppapi::HostResource /* audio_id */, |
| bool /* play */) |
| +// PPB_AudioInput. |
|
dmichael (off chromium)
2011/11/17 04:05:21
nit: PPB_AudioInput_Dev (consistent with the earli
|
| +IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBAudioInput_Create, |
| + PP_Instance /* instance_id */, |
| + int32_t /* sample_rate */, |
| + uint32_t /* sample_frame_count */, |
| + ppapi::HostResource /* result */) |
| +IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBAudioInput_StartOrStop, |
| + ppapi::HostResource /* audio_id */, |
| + bool /* capture */) |
| + |
| // PPB_Broker. |
| IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBBroker_Create, |
| PP_Instance /* instance */, |