| Index: media/base/filters.cc
|
| diff --git a/media/base/filters.cc b/media/base/filters.cc
|
| index f9a85ae5aef6071e302564e8505a0fa16b0a9882..11e7cba0ddf0c17f7c43e57785a4d921a478a323 100644
|
| --- a/media/base/filters.cc
|
| +++ b/media/base/filters.cc
|
| @@ -75,6 +75,19 @@ VideoDecoder::VideoDecoder() {}
|
|
|
| VideoDecoder::~VideoDecoder() {}
|
|
|
| +void VideoDecoder::Play(const base::Closure& /* callback */) {
|
| + LOG(FATAL) << "VideoDecoder::Play is not supposed to be called.";
|
| +}
|
| +
|
| +void VideoDecoder::Pause(const base::Closure& /* callback */) {
|
| + LOG(FATAL) << "VideoDecoder::Pause is not supposed to be called.";
|
| +}
|
| +
|
| +void VideoDecoder::Seek(base::TimeDelta /* time */,
|
| + const PipelineStatusCB& /* callback */) {
|
| + LOG(FATAL) << "VideoDecoder::Seek is not supposed to be called.";
|
| +}
|
| +
|
| bool VideoDecoder::HasAlpha() const {
|
| return false;
|
| }
|
|
|