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

Unified Diff: content/common/media/audio_messages.h

Issue 11359196: Associate audio streams with their source/destination RenderView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased; and numerous clean-ups. Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/common/media/audio_messages.h
diff --git a/content/common/media/audio_messages.h b/content/common/media/audio_messages.h
index fd16fbca8dc6067813eac835111738041f9ff472..e78cfddfb8859a8c2bd32b786d7c9a813ab1d249 100644
--- a/content/common/media/audio_messages.h
+++ b/content/common/media/audio_messages.h
@@ -97,6 +97,16 @@ 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 */)
scherkus (not reviewing) 2012/11/27 22:55:26 Seeing this just jogged my memory. The history of
miu 2012/11/28 07:26:20 Agreed. This is related to the discussion we've b
+
+// Indicate that audio for a stream is consumed by the specified render view.
+IPC_MESSAGE_CONTROL2(AudioInputHostMsg_AssociateStreamWithConsumer,
+ int /* stream_id */,
+ int /* render_view_id */)
+
// Start buffering and play the audio stream specified by stream_id.
IPC_MESSAGE_CONTROL1(AudioHostMsg_PlayStream,
int /* stream_id */)

Powered by Google App Engine
This is Rietveld 408576698