| Index: content/common/media/audio_messages.h
|
| diff --git a/content/common/media/audio_messages.h b/content/common/media/audio_messages.h
|
| index 330a1b476ba4184f5f0e569472c08446ebc4ede6..b8da71ed43a58f405bfc02222ef16ede8b2eb36a 100644
|
| --- a/content/common/media/audio_messages.h
|
| +++ b/content/common/media/audio_messages.h
|
| @@ -5,8 +5,6 @@
|
| // IPC messages for the audio.
|
| // Multiply-included message file, hence no include guard.
|
|
|
| -#include <string>
|
| -
|
| #include "base/basictypes.h"
|
| #include "base/shared_memory.h"
|
| #include "base/sync_socket.h"
|
| @@ -85,10 +83,6 @@ IPC_MESSAGE_CONTROL2(AudioInputMsg_NotifyStreamVolume,
|
| int /* stream id */,
|
| double /* volume */)
|
|
|
| -IPC_MESSAGE_CONTROL2(AudioInputMsg_NotifyDeviceStarted,
|
| - int /* stream id */,
|
| - std::string /* device_id */)
|
| -
|
| // Messages sent from the renderer to the browser.
|
|
|
| // Request that got sent to browser for creating an audio output stream
|
| @@ -99,8 +93,8 @@ IPC_MESSAGE_CONTROL2(AudioHostMsg_CreateStream,
|
| // Request that got sent to browser for creating an audio input stream
|
| IPC_MESSAGE_CONTROL4(AudioInputHostMsg_CreateStream,
|
| int /* stream_id */,
|
| + int /* session_id */,
|
| media::AudioParameters /* params */,
|
| - std::string /* device_id */,
|
| bool /* automatic_gain_control */)
|
|
|
| // Indicate that audio for a stream is produced by the specified render view.
|
| @@ -147,9 +141,3 @@ IPC_MESSAGE_CONTROL2(AudioHostMsg_SetVolume,
|
| IPC_MESSAGE_CONTROL2(AudioInputHostMsg_SetVolume,
|
| int /* stream_id */,
|
| double /* volume */)
|
| -
|
| -// Start the device referenced by the session_id for the input stream specified
|
| -// by stream_id.
|
| -IPC_MESSAGE_CONTROL2(AudioInputHostMsg_StartDevice,
|
| - int /* stream_id */,
|
| - int /* session_id */)
|
|
|