Index: media/filters/decoder_stream_traits.h |
diff --git a/media/filters/decoder_stream_traits.h b/media/filters/decoder_stream_traits.h |
index 8caf2df193beedf03ef96009956211f7aff35ef0..707ff1ca27fca0bbb8f49d68e16474d0fdd52890 100644 |
--- a/media/filters/decoder_stream_traits.h |
+++ b/media/filters/decoder_stream_traits.h |
@@ -26,13 +26,13 @@ |
typedef AudioBuffer OutputType; |
typedef AudioDecoder DecoderType; |
typedef DecryptingAudioDecoder DecryptingDecoderType; |
- typedef base::Callback<void(bool success)> InitCB; |
+ typedef base::Callback<void(bool success)> StreamInitCB; |
typedef base::Callback<void(const scoped_refptr<OutputType>&)> OutputCB; |
static std::string ToString(); |
static void InitializeDecoder(DecoderType* decoder, |
DemuxerStream* stream, |
- const InitCB& init_cb, |
+ const PipelineStatusCB& status_cb, |
const OutputCB& output_cb); |
static bool NeedsBitstreamConversion(DecoderType* decoder) { return false; } |
static void ReportStatistics(const StatisticsCB& statistics_cb, |
@@ -45,13 +45,13 @@ |
typedef VideoFrame OutputType; |
typedef VideoDecoder DecoderType; |
typedef DecryptingVideoDecoder DecryptingDecoderType; |
- typedef base::Callback<void(bool success)> InitCB; |
+ typedef base::Callback<void(bool success)> StreamInitCB; |
typedef base::Callback<void(const scoped_refptr<OutputType>&)> OutputCB; |
static std::string ToString(); |
static void InitializeDecoder(DecoderType* decoder, |
DemuxerStream* stream, |
- const InitCB& init_cb, |
+ const PipelineStatusCB& status_cb, |
const OutputCB& output_cb); |
static bool NeedsBitstreamConversion(DecoderType* decoder); |
static void ReportStatistics(const StatisticsCB& statistics_cb, |