| 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..eeb5cb175fa20f63ec0e8ac8efc09f1b99627f7e 100644
|
| --- a/media/filters/pipeline_integration_test_base.cc
|
| +++ b/media/filters/pipeline_integration_test_base.cc
|
| @@ -163,9 +163,13 @@ PipelineIntegrationTestBase::CreateFilterCollection(
|
| scoped_ptr<FilterCollection> collection(new FilterCollection());
|
| collection->SetDemuxerFactory(demuxer_factory.Pass());
|
| collection->AddAudioDecoder(new FFmpegAudioDecoder(
|
| - message_loop_factory_->GetMessageLoop("AudioDecoderThread")));
|
| + base::Bind(&MessageLoopFactory::GetMessageLoop,
|
| + base::Unretained(message_loop_factory_.get()),
|
| + "AudioDecoderThread")));
|
| collection->AddVideoDecoder(new FFmpegVideoDecoder(
|
| - message_loop_factory_->GetMessageLoop("VideoDecoderThread")));
|
| + base::Bind(&MessageLoopFactory::GetMessageLoop,
|
| + base::Unretained(message_loop_factory_.get()),
|
| + "VideoDecoderThread")));
|
| collection->AddVideoRenderer(new VideoRendererBase(
|
| base::Bind(&PipelineIntegrationTestBase::OnVideoRendererPaint,
|
| base::Unretained(this)),
|
|
|