| Index: media/filters/pipeline_integration_test_base.cc
|
| diff --git a/media/filters/pipeline_integration_test_base.cc b/media/filters/pipeline_integration_test_base.cc
|
| index dd3cd5b993494ee3a40d1f3a59f9b7f30a0cd794..67f5e7756eb6ae499ff4ab897516de07fb07b0e0 100644
|
| --- a/media/filters/pipeline_integration_test_base.cc
|
| +++ b/media/filters/pipeline_integration_test_base.cc
|
| @@ -163,9 +163,9 @@ PipelineIntegrationTestBase::CreateFilterCollection(
|
| scoped_ptr<FilterCollection> collection(new FilterCollection());
|
| collection->SetDemuxerFactory(demuxer_factory.Pass());
|
| collection->AddAudioDecoder(new FFmpegAudioDecoder(
|
| - message_loop_factory_->GetMessageLoop("AudioDecoderThread")));
|
| + message_loop_factory_.get(), "AudioDecoderThread"));
|
| collection->AddVideoDecoder(new FFmpegVideoDecoder(
|
| - message_loop_factory_->GetMessageLoop("VideoDecoderThread")));
|
| + message_loop_factory_.get(), "VideoDecoderThread"));
|
| collection->AddVideoRenderer(new VideoRendererBase(
|
| base::Bind(&PipelineIntegrationTestBase::OnVideoRendererPaint,
|
| base::Unretained(this)),
|
|
|