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

Unified Diff: media/filters/pipeline_integration_test_base.cc

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 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') | media/webm/webm_cluster_parser_unittest.cc » ('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 68b648ec22bc0ca29020ab0f13cf27e29583bea2..1b650d598dbe02bc2cbbf6b914dafefcdf9b5d6c 100644
--- a/media/filters/pipeline_integration_test_base.cc
+++ b/media/filters/pipeline_integration_test_base.cc
@@ -67,7 +67,8 @@ void PipelineIntegrationTestBase::DemuxerNeedKeyCB(
DCHECK(init_data.get());
DCHECK_GT(init_data_size, 0);
CHECK(!need_key_cb_.is_null());
- need_key_cb_.Run("", "", type, init_data.Pass(), init_data_size);
+ need_key_cb_.Run(
+ std::string(), std::string(), type, init_data.Pass(), init_data_size);
}
void PipelineIntegrationTestBase::OnEnded() {
« no previous file with comments | « media/filters/pipeline_integration_test.cc ('k') | media/webm/webm_cluster_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698