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..f2de0787a6cd9ed78aae0b5e63961dd7bd6853b9 100644 |
--- a/content/common/media/audio_messages.h |
+++ b/content/common/media/audio_messages.h |
@@ -91,9 +91,12 @@ IPC_MESSAGE_CONTROL2(AudioInputMsg_NotifyDeviceStarted, |
// Messages sent from the renderer to the browser. |
-// Request that got sent to browser for creating an audio output stream |
-IPC_MESSAGE_CONTROL2(AudioHostMsg_CreateStream, |
+// Request that is sent to the browser for creating an audio output stream. |
+// |render_view_id| is the routing ID for the render view producing the audio |
+// data. |
+IPC_MESSAGE_CONTROL3(AudioHostMsg_CreateStream, |
int /* stream_id */, |
+ int /* render_view_id */, |
media::AudioParameters /* params */) |
// Request that got sent to browser for creating an audio input stream |
@@ -103,11 +106,6 @@ IPC_MESSAGE_CONTROL4(AudioInputHostMsg_CreateStream, |
std::string /* device_id */, |
bool /* automatic_gain_control */) |
-// Indicate that audio for a stream is produced by the specified render view. |
-IPC_MESSAGE_CONTROL2(AudioHostMsg_AssociateStreamWithProducer, |
- int /* stream_id */, |
- int /* render_view_id */) |
- |
// Indicate that audio for a stream is consumed by the specified render view. |
IPC_MESSAGE_CONTROL2(AudioInputHostMsg_AssociateStreamWithConsumer, |
int /* stream_id */, |