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

Unified Diff: media/filters/pipeline_integration_test_base.cc

Issue 547913002: MediaLog: Log selected audio/video decoder name. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use property instead of log. Created 6 years, 3 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: 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 7251adfe9519bc985ab716c187068d67a9efd1be..8edab1887a31e04f37bb46c0499906778664154c 100644
--- a/media/filters/pipeline_integration_test_base.cc
+++ b/media/filters/pipeline_integration_test_base.cc
@@ -256,7 +256,8 @@ scoped_ptr<Renderer> PipelineIntegrationTestBase::CreateRenderer(
decryptor),
base::Bind(&PipelineIntegrationTestBase::OnVideoRendererPaint,
base::Unretained(this)),
- false));
+ false,
+ new MediaLog()));
if (!clockless_playback_) {
audio_sink_ = new NullAudioSink(message_loop_.message_loop_proxy());
@@ -286,7 +287,8 @@ scoped_ptr<Renderer> PipelineIntegrationTestBase::CreateRenderer(
base::Bind(&PipelineIntegrationTestBase::SetDecryptor,
base::Unretained(this),
decryptor),
- hardware_config_));
+ hardware_config_,
+ new MediaLog()));
if (hashing_enabled_)
audio_sink_->StartAudioHashForTesting();

Powered by Google App Engine
This is Rietveld 408576698