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

Unified Diff: media/base/pipeline_impl.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/base/pipeline_impl.h ('k') | media/base/pipeline_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline_impl.cc
diff --git a/media/base/pipeline_impl.cc b/media/base/pipeline_impl.cc
index 7ef051de0250ff3b38a0fde925a6a543a4d48d90..1da8366eef94d9231f63ca3c6330c82bd50aff63 100644
--- a/media/base/pipeline_impl.cc
+++ b/media/base/pipeline_impl.cc
@@ -170,7 +170,7 @@ void PipelineImpl::SetVolume(float volume) {
}
}
-base::TimeDelta PipelineImpl::GetTime() const {
+base::TimeDelta PipelineImpl::GetCurrentTime() const {
AutoLock auto_lock(lock_);
return time_;
}
@@ -336,7 +336,7 @@ void PipelineInternal::SetTime(base::TimeDelta time) {
// Called from any thread. Sets the pipeline |error_| member and destroys all
// filters.
-void PipelineInternal::Error(PipelineError error) {
+void PipelineInternal::SetError(PipelineError error) {
message_loop_->PostTask(FROM_HERE,
NewRunnableMethod(this, &PipelineInternal::ErrorTask, error));
}
@@ -444,7 +444,7 @@ void PipelineInternal::InitializeTask() {
if (state_ == kInitVideoRenderer) {
if (!IsPipelineOk() || pipeline_->rendered_mime_types_.empty()) {
- Error(PIPELINE_ERROR_COULD_NOT_RENDER);
+ SetError(PIPELINE_ERROR_COULD_NOT_RENDER);
return;
}
@@ -583,7 +583,7 @@ void PipelineInternal::CreateFilter(FilterFactory* filter_factory,
// Create the filter.
scoped_refptr<Filter> filter = filter_factory->Create<Filter>(media_format);
if (!filter) {
- Error(PIPELINE_ERROR_REQUIRED_FILTER_MISSING);
+ SetError(PIPELINE_ERROR_REQUIRED_FILTER_MISSING);
return;
}
@@ -592,7 +592,7 @@ void PipelineInternal::CreateFilter(FilterFactory* filter_factory,
scoped_ptr<base::Thread> thread(new base::Thread(GetThreadName<Filter>()));
if (!thread.get() || !thread->Start()) {
NOTREACHED() << "Could not start filter thread";
- Error(PIPELINE_ERROR_INITIALIZATION_FAILED);
+ SetError(PIPELINE_ERROR_INITIALIZATION_FAILED);
return;
}
« no previous file with comments | « media/base/pipeline_impl.h ('k') | media/base/pipeline_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698