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

Unified Diff: content/renderer/media/webrtc_local_audio_renderer.h

Issue 12383016: Merge AssociateStreamWithProducer message into CreateStream message for both audio output and input. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months 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/renderer/media/webrtc_local_audio_renderer.h
diff --git a/content/renderer/media/webrtc_local_audio_renderer.h b/content/renderer/media/webrtc_local_audio_renderer.h
index 26215fdef4aa8a0ed9322b0f2c401c7503e7b5f2..55e8c30de154d1d443563ffec7ed078d12125485 100644
--- a/content/renderer/media/webrtc_local_audio_renderer.h
+++ b/content/renderer/media/webrtc_local_audio_renderer.h
@@ -13,12 +13,12 @@
namespace media {
class AudioBus;
+class AudioOutputDevice;
class AudioParameters;
}
namespace content {
-class RendererAudioOutputDevice;
class WebRtcAudioCapturer;
// WebRtcLocalAudioRenderer is a webkit_media::MediaStreamAudioRenderer
@@ -91,7 +91,7 @@ class CONTENT_EXPORT WebRtcLocalAudioRenderer
const int source_render_view_id_;
// The sink (destination) for rendered audio.
- scoped_refptr<RendererAudioOutputDevice> sink_;
+ scoped_refptr<media::AudioOutputDevice> sink_;
// Used to DCHECK that we are called on the correct thread.
base::ThreadChecker thread_checker_;

Powered by Google App Engine
This is Rietveld 408576698