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

Unified Diff: media/base/pipeline_impl.h

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.h ('k') | media/base/pipeline_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline_impl.h
diff --git a/media/base/pipeline_impl.h b/media/base/pipeline_impl.h
index e9f44d59ce7d4f92e15e8d601729e3a51bdc302c..6b97c946d863b059a2ab1db002541f395aa5051f 100644
--- a/media/base/pipeline_impl.h
+++ b/media/base/pipeline_impl.h
@@ -45,7 +45,7 @@ class PipelineImpl : public Pipeline {
virtual void SetPlaybackRate(float playback_rate);
virtual float GetVolume() const;
virtual void SetVolume(float volume);
- virtual base::TimeDelta GetTime() const;
+ virtual base::TimeDelta GetCurrentTime() const;
virtual base::TimeDelta GetBufferedTime() const;
virtual base::TimeDelta GetDuration() const;
virtual int64 GetBufferedBytes() const;
@@ -195,9 +195,10 @@ class PipelineInternal : public base::RefCountedThreadSafe<PipelineInternal> {
// that have registered a time update callback.
void SetTime(base::TimeDelta time);
- // Called by a FilterHostImpl on behalf of a filter calling FilterHost::Error.
- // If the pipeline is running a nested message loop, it will be exited.
- void Error(PipelineError error);
+ // Called by a FilterHostImpl on behalf of a filter calling
+ // FilterHost::SetError(). If the pipeline is running a nested message loop,
+ // it will be exited.
+ void SetError(PipelineError error);
// Simple accessor used by the FilterHostImpl class to get access to the
// pipeline object.
@@ -263,7 +264,7 @@ class PipelineInternal : public base::RefCountedThreadSafe<PipelineInternal> {
// - StopTask() resets the pipeline to a fresh state, where as ErrorTask()
// leaves the pipeline as is for client inspection.
// - StopTask() can be scheduled by the client calling Stop(), where as
- // ErrorTask() is scheduled as a result of a filter calling Error().
+ // ErrorTask() is scheduled as a result of a filter calling SetError().
void StopTask(PipelineCallback* stop_callback);
void ErrorTask(PipelineError error);
« no previous file with comments | « media/base/pipeline.h ('k') | media/base/pipeline_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698