Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| =================================================================== |
| --- ppapi/proxy/ppapi_messages.h (revision 109955) |
| +++ ppapi/proxy/ppapi_messages.h (working copy) |
| @@ -193,6 +193,10 @@ |
| std::string /* interface_name */, |
| bool /* result */) |
| +IPC_MESSAGE_CONTROL2(PpapiMsg_ExecuteCallback, |
|
viettrungluu
2011/11/16 01:08:34
Eh?
|
| + uint32 /* serialized_callback */, |
| + int32 /* param */) |
| + |
| // Broker Process. |
| IPC_SYNC_MESSAGE_CONTROL2_1(PpapiMsg_ConnectToPlugin, |
| @@ -216,6 +220,14 @@ |
| 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 +502,16 @@ |
| ppapi::HostResource /* audio_id */, |
| bool /* play */) |
| +// PPB_AudioInput. |
| +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 */, |