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