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

Unified Diff: media/filters/video_renderer_base.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/file_data_source.cc ('k') | media/filters/video_renderer_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_renderer_base.cc
diff --git a/media/filters/video_renderer_base.cc b/media/filters/video_renderer_base.cc
index 3ca45dc63b73f1cc42caff89a58156bfb49f167d..b9f687ab9e539550e2da22208f0ca5de9168c73c 100644
--- a/media/filters/video_renderer_base.cc
+++ b/media/filters/video_renderer_base.cc
@@ -107,7 +107,7 @@ void VideoRendererBase::Initialize(VideoDecoder* decoder,
int width = 0;
int height = 0;
if (!ParseMediaFormat(decoder->media_format(), &width, &height)) {
- host()->Error(PIPELINE_ERROR_INITIALIZATION_FAILED);
+ host()->SetError(PIPELINE_ERROR_INITIALIZATION_FAILED);
initialize_callback_->Run();
initialize_callback_.reset();
return;
@@ -118,7 +118,7 @@ void VideoRendererBase::Initialize(VideoDecoder* decoder,
// TODO(scherkus): do we trust subclasses not to do something silly while
// we're holding the lock?
if (!OnInitialize(decoder)) {
- host()->Error(PIPELINE_ERROR_INITIALIZATION_FAILED);
+ host()->SetError(PIPELINE_ERROR_INITIALIZATION_FAILED);
initialize_callback_->Run();
initialize_callback_.reset();
return;
@@ -127,7 +127,7 @@ void VideoRendererBase::Initialize(VideoDecoder* decoder,
// Create our video thread.
if (!PlatformThread::Create(0, this, &thread_)) {
NOTREACHED() << "Video thread creation failed";
- host()->Error(PIPELINE_ERROR_INITIALIZATION_FAILED);
+ host()->SetError(PIPELINE_ERROR_INITIALIZATION_FAILED);
initialize_callback_->Run();
initialize_callback_.reset();
return;
@@ -262,7 +262,7 @@ void VideoRendererBase::OnReadComplete(VideoFrame* frame) {
// We should have initialized but there's no decoded frames in the queue.
// Raise an error.
state_ = ERRORED;
- host()->Error(PIPELINE_ERROR_NO_DATA);
+ host()->SetError(PIPELINE_ERROR_NO_DATA);
initialize_callback_->Run();
initialize_callback_.reset();
} else {
« no previous file with comments | « media/filters/file_data_source.cc ('k') | media/filters/video_renderer_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698