| Index: content/browser/renderer_host/media/web_contents_audio_input_stream.cc
|
| diff --git a/content/browser/renderer_host/media/web_contents_audio_input_stream.cc b/content/browser/renderer_host/media/web_contents_audio_input_stream.cc
|
| index 4e1928a607086ea3a998c60c543cc07b65b82f67..37afa5f0ff50dc29ebd55178f724397595d4340b 100644
|
| --- a/content/browser/renderer_host/media/web_contents_audio_input_stream.cc
|
| +++ b/content/browser/renderer_host/media/web_contents_audio_input_stream.cc
|
| @@ -116,9 +116,9 @@ WebContentsAudioInputStream::Impl::Impl(
|
| target_render_process_id_(render_process_id),
|
| target_render_view_id_(render_view_id),
|
| callback_(NULL) {
|
| - DCHECK(message_loop_);
|
| + DCHECK(message_loop_.get());
|
| DCHECK(mirroring_manager_);
|
| - DCHECK(tracker_);
|
| + DCHECK(tracker_.get());
|
| DCHECK(mixer_stream_.get());
|
| }
|
|
|
| @@ -237,7 +237,9 @@ media::AudioOutputStream* WebContentsAudioInputStream::Impl::AddInput(
|
| // guarantee the VirtualAudioInputStream (mixer_stream_) outlives the
|
| // VirtualAudioOutputStream.
|
| return new media::VirtualAudioOutputStream(
|
| - params, message_loop_, mixer_stream_.get(),
|
| + params,
|
| + message_loop_.get(),
|
| + mixer_stream_.get(),
|
| base::Bind(&Impl::ReleaseInput, this));
|
| }
|
|
|
|
|