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

Unified Diff: media/filters/pipeline_integration_test_base.cc

Issue 17289006: Separate CDM initialization from GenerateKeyRequest & remove key_system parameters. (Closed) Base URL: master
Patch Set: rebase only Created 7 years, 6 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
« no previous file with comments | « media/filters/pipeline_integration_test.cc ('k') | webkit/plugins/ppapi/content_decryptor_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7e1e59b79652897416a263ba77548973ae9c1c7c..8ba90196c0e3251dacf57414ddce131d3eac07c7 100644
--- a/media/filters/pipeline_integration_test_base.cc
+++ b/media/filters/pipeline_integration_test_base.cc
@@ -69,8 +69,7 @@ void PipelineIntegrationTestBase::DemuxerNeedKeyCB(
DCHECK(init_data.get());
DCHECK_GT(init_data_size, 0);
CHECK(!need_key_cb_.is_null());
- need_key_cb_.Run(
- std::string(), std::string(), type, init_data.Pass(), init_data_size);
+ need_key_cb_.Run(std::string(), type, init_data.Pass(), init_data_size);
}
void PipelineIntegrationTestBase::OnEnded() {
« no previous file with comments | « media/filters/pipeline_integration_test.cc ('k') | webkit/plugins/ppapi/content_decryptor_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698