| Index: media/video/video_decode_accelerator.cc
|
| diff --git a/media/video/video_decode_accelerator.cc b/media/video/video_decode_accelerator.cc
|
| index 6ffbda53b50a6f77b79b1a3139f7363494314326..34d453c33eb3220f972fe6b39017398c05e74e26 100644
|
| --- a/media/video/video_decode_accelerator.cc
|
| +++ b/media/video/video_decode_accelerator.cc
|
| @@ -9,8 +9,16 @@
|
|
|
| namespace media {
|
|
|
| +void VideoDecodeAccelerator::Client::NotifyCdmSet(bool success) {
|
| + NOTREACHED() << "By default CDM is not supported.";
|
| +}
|
| +
|
| VideoDecodeAccelerator::~VideoDecodeAccelerator() {}
|
|
|
| +void VideoDecodeAccelerator::SetCdm(int cdm_id) {
|
| + NOTREACHED() << "By default CDM is not supported.";
|
| +}
|
| +
|
| bool VideoDecodeAccelerator::CanDecodeOnIOThread() {
|
| // GPU process subclasses must override this.
|
| LOG(FATAL) << "This should only get called in the GPU process";
|
|
|