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

Unified Diff: media/test/pipeline_integration_test_base.cc

Issue 1456993004: media::FFmpegVideoDecoder: remove ctor param |task_runner| and use a ThreadChecker instead. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « media/renderers/default_renderer_factory.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/pipeline_integration_test_base.cc
diff --git a/media/test/pipeline_integration_test_base.cc b/media/test/pipeline_integration_test_base.cc
index ca9dee95320122827d5ee0864ee8f59c6d754de3..26662b7c4f59b69cdd01b7764a090ca1df1f2f69 100644
--- a/media/test/pipeline_integration_test_base.cc
+++ b/media/test/pipeline_integration_test_base.cc
@@ -236,8 +236,7 @@ scoped_ptr<Renderer> PipelineIntegrationTestBase::CreateRenderer() {
#endif // !defined(MEDIA_DISABLE_LIBVPX)
#if !defined(MEDIA_DISABLE_FFMPEG)
- video_decoders.push_back(
- new FFmpegVideoDecoder(message_loop_.task_runner()));
+ video_decoders.push_back(new FFmpegVideoDecoder());
#endif
// Simulate a 60Hz rendering sink.
« no previous file with comments | « media/renderers/default_renderer_factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698