| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_BASE_PIPELINE_STATUS_H_ | 5 #ifndef MEDIA_BASE_PIPELINE_STATUS_H_ |
| 6 #define MEDIA_BASE_PIPELINE_STATUS_H_ | 6 #define MEDIA_BASE_PIPELINE_STATUS_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/callback_old.h" | |
| 10 | 9 |
| 11 namespace media { | 10 namespace media { |
| 12 | 11 |
| 13 // Status states for pipeline. All codes except PIPELINE_OK indicate errors. | 12 // Status states for pipeline. All codes except PIPELINE_OK indicate errors. |
| 14 enum PipelineStatus { | 13 enum PipelineStatus { |
| 15 PIPELINE_OK, | 14 PIPELINE_OK, |
| 16 PIPELINE_ERROR_URL_NOT_FOUND, | 15 PIPELINE_ERROR_URL_NOT_FOUND, |
| 17 PIPELINE_ERROR_NETWORK, | 16 PIPELINE_ERROR_NETWORK, |
| 18 PIPELINE_ERROR_DECODE, | 17 PIPELINE_ERROR_DECODE, |
| 19 PIPELINE_ERROR_ABORT, | 18 PIPELINE_ERROR_ABORT, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 34 DECODER_ERROR_NOT_SUPPORTED, | 33 DECODER_ERROR_NOT_SUPPORTED, |
| 35 // DataSourceFactory errors. | 34 // DataSourceFactory errors. |
| 36 DATASOURCE_ERROR_URL_NOT_SUPPORTED, | 35 DATASOURCE_ERROR_URL_NOT_SUPPORTED, |
| 37 }; | 36 }; |
| 38 | 37 |
| 39 typedef base::Callback<void(PipelineStatus)> PipelineStatusCB; | 38 typedef base::Callback<void(PipelineStatus)> PipelineStatusCB; |
| 40 | 39 |
| 41 } // namespace media | 40 } // namespace media |
| 42 | 41 |
| 43 #endif // MEDIA_BASE_PIPELINE_STATUS_H_ | 42 #endif // MEDIA_BASE_PIPELINE_STATUS_H_ |
| OLD | NEW |