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

Unified Diff: media/filters/video_renderer_base_unittest.cc

Issue 155711: Renamed FilterHost::Error() and Pipeline::GetTime() to more appropriate names. (Closed)
Patch Set: Created 11 years, 5 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/video_renderer_base.cc ('k') | media/player/movie.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_renderer_base_unittest.cc
diff --git a/media/filters/video_renderer_base_unittest.cc b/media/filters/video_renderer_base_unittest.cc
index 691815d2e053fe822afd8e16adb087231885f829..f232cded11a917bac647f22a4a656ad6a4fe5bff 100644
--- a/media/filters/video_renderer_base_unittest.cc
+++ b/media/filters/video_renderer_base_unittest.cc
@@ -91,7 +91,7 @@ TEST_F(VideoRendererBaseTest, Initialize_BadMediaFormat) {
scoped_refptr<MockVideoDecoder> bad_decoder = new MockVideoDecoder();
// We expect to receive an error.
- EXPECT_CALL(host_, Error(PIPELINE_ERROR_INITIALIZATION_FAILED));
+ EXPECT_CALL(host_, SetError(PIPELINE_ERROR_INITIALIZATION_FAILED));
// We expect our callback to be executed.
EXPECT_CALL(callback_, OnFilterCallback());
@@ -114,7 +114,7 @@ TEST_F(VideoRendererBaseTest, Initialize_Failed) {
.WillOnce(Return(false));
// We expect to receive an error.
- EXPECT_CALL(host_, Error(PIPELINE_ERROR_INITIALIZATION_FAILED));
+ EXPECT_CALL(host_, SetError(PIPELINE_ERROR_INITIALIZATION_FAILED));
// We expect our callback to be executed.
EXPECT_CALL(callback_, OnFilterCallback());
@@ -141,7 +141,7 @@ TEST_F(VideoRendererBaseTest, Initialize_NoData) {
EXPECT_CALL(*renderer_, CheckPoint(0));
// We'll provide end-of-stream immediately, which results in an error.
- EXPECT_CALL(host_, Error(PIPELINE_ERROR_NO_DATA));
+ EXPECT_CALL(host_, SetError(PIPELINE_ERROR_NO_DATA));
// Then we expect our callback to be executed.
EXPECT_CALL(callback_, OnFilterCallback());
« no previous file with comments | « media/filters/video_renderer_base.cc ('k') | media/player/movie.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698