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

Unified Diff: media/base/pipeline_impl_unittest.cc

Issue 7193001: Move rtc_video_decoder* from media/filter/ to content/renderer/media/. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 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
Index: media/base/pipeline_impl_unittest.cc
===================================================================
--- media/base/pipeline_impl_unittest.cc (revision 89408)
+++ media/base/pipeline_impl_unittest.cc (working copy)
@@ -215,7 +215,8 @@
build_status),
url,
NewCallback(reinterpret_cast<CallbackHelper*>(&callbacks_),
- &CallbackHelper::OnStart));
+ &CallbackHelper::OnStart),
+ !run_build);
message_loop_.RunAllPending();
}
@@ -339,7 +340,8 @@
PIPELINE_OK),
"",
NewCallback(reinterpret_cast<CallbackHelper*>(&callbacks_),
- &CallbackHelper::OnStart));
+ &CallbackHelper::OnStart),
+ false);
message_loop_.RunAllPending();
EXPECT_FALSE(pipeline_->IsInitialized());
@@ -367,7 +369,8 @@
PIPELINE_ERROR_REQUIRED_FILTER_MISSING);
pipeline_->Start(collection, "",
NewCallback(reinterpret_cast<CallbackHelper*>(&callbacks_),
- &CallbackHelper::OnStart));
+ &CallbackHelper::OnStart),
+ false);
message_loop_.RunAllPending();
EXPECT_FALSE(pipeline_->IsInitialized());

Powered by Google App Engine
This is Rietveld 408576698