| Index: media/filters/decrypting_video_decoder.cc
|
| diff --git a/media/filters/decrypting_video_decoder.cc b/media/filters/decrypting_video_decoder.cc
|
| index 1b541d96231644c33047c5b4e834408bb669d7d6..0f1c458b5d6af52fec447237e01d3e842d6f2eaf 100644
|
| --- a/media/filters/decrypting_video_decoder.cc
|
| +++ b/media/filters/decrypting_video_decoder.cc
|
| @@ -87,7 +87,8 @@ void DecryptingVideoDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
|
| state_ == kDecodeFinished ||
|
| state_ == kError) << state_;
|
| DCHECK(!decode_cb.is_null());
|
| - CHECK(decode_cb_.is_null()) << "Overlapping decodes are not supported.";
|
| + // Overlapping decodes are not supported.
|
| + CHECK(decode_cb_.is_null());
|
|
|
| decode_cb_ = BindToCurrentLoop(decode_cb);
|
|
|
|
|