| Index: media/filters/decoder_stream.h
|
| diff --git a/media/filters/decoder_stream.h b/media/filters/decoder_stream.h
|
| index b8a0d049294f8524ef7819d6c1eefbc79fdd4d59..12d1a8c5fd1fd03c5f1b68ba63f351959339496e 100644
|
| --- a/media/filters/decoder_stream.h
|
| +++ b/media/filters/decoder_stream.h
|
| @@ -61,7 +61,8 @@ class MEDIA_EXPORT DecoderStream {
|
| void Initialize(DemuxerStream* stream,
|
| const InitCB& init_cb,
|
| const SetDecryptorReadyCB& set_decryptor_ready_cb,
|
| - const StatisticsCB& statistics_cb);
|
| + const StatisticsCB& statistics_cb,
|
| + const base::Closure& waiting_for_encryption_key_cb);
|
|
|
| // Reads a decoded Output and returns it via the |read_cb|. Note that
|
| // |read_cb| is always called asynchronously. This method should only be
|
| @@ -170,6 +171,7 @@ class MEDIA_EXPORT DecoderStream {
|
|
|
| StatisticsCB statistics_cb_;
|
| InitCB init_cb_;
|
| + base::Closure waiting_for_encryption_key_cb_;
|
|
|
| ReadCB read_cb_;
|
| base::Closure reset_cb_;
|
|
|