| Index: media/base/filter_host.h
|
| diff --git a/media/base/filter_host.h b/media/base/filter_host.h
|
| index 377cb97d018e7050186a096d5dd50beb398c0319..c3f31acb546aa43edde24665f603d1b6c1697af9 100644
|
| --- a/media/base/filter_host.h
|
| +++ b/media/base/filter_host.h
|
| @@ -7,7 +7,7 @@
|
| // reference as part of initialization.
|
| //
|
| // This interface is intentionally verbose to cover the needs for the different
|
| -// types of filters (see media/base/filters.h for filter definitionss). Filters
|
| +// types of filters (see media/base/filters.h for filter definitions). Filters
|
| // typically use parts of the interface that are relevant to their function.
|
| // For example, an audio renderer filter typically calls SetTime as it feeds
|
| // data to the audio hardware. A video renderer filter typically calls GetTime
|
| @@ -26,7 +26,7 @@ class FilterHost {
|
| public:
|
| // Stops execution of the pipeline due to a fatal error. Do not call this
|
| // method with PIPELINE_OK.
|
| - virtual void SetError(PipelineError error) = 0;
|
| + virtual void SetError(PipelineStatus error) = 0;
|
|
|
| // Gets the current time in microseconds.
|
| virtual base::TimeDelta GetTime() const = 0;
|
|
|