| Index: media/base/pipeline_status.h
|
| diff --git a/media/base/pipeline_status.h b/media/base/pipeline_status.h
|
| index 787708efb1e65813b100d388819f9974cd25957b..84c8d4f4c43ab891f16380e7dce744ae33d23c1d 100644
|
| --- a/media/base/pipeline_status.h
|
| +++ b/media/base/pipeline_status.h
|
| @@ -9,9 +9,8 @@
|
|
|
| namespace media {
|
|
|
| -// Error definitions for pipeline. All codes indicate an error except:
|
| -// PIPELINE_OK indicates the pipeline is running normally.
|
| -enum PipelineError {
|
| +// Status states for pipeline. All codes except PIPELINE_OK indicate errors.
|
| +enum PipelineStatus {
|
| PIPELINE_OK,
|
| PIPELINE_ERROR_URL_NOT_FOUND,
|
| PIPELINE_ERROR_NETWORK,
|
| @@ -34,7 +33,7 @@ enum PipelineError {
|
| DATASOURCE_ERROR_URL_NOT_SUPPORTED,
|
| };
|
|
|
| -typedef Callback1<media::PipelineError>::Type PipelineStatusCallback;
|
| +typedef Callback1<media::PipelineStatus>::Type PipelineStatusCallback;
|
|
|
| } // namespace media
|
|
|
|
|