| Index: media/filters/decrypting_video_decoder.h
|
| diff --git a/media/filters/decrypting_video_decoder.h b/media/filters/decrypting_video_decoder.h
|
| index ac4caf869511a15f1aaa099bdca3dacd23e42357..a1f43edfeac27d37a681fd53aadd3e227736eef0 100644
|
| --- a/media/filters/decrypting_video_decoder.h
|
| +++ b/media/filters/decrypting_video_decoder.h
|
| @@ -39,7 +39,6 @@ class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder {
|
| virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
|
| const DecodeCB& decode_cb) OVERRIDE;
|
| virtual void Reset(const base::Closure& closure) OVERRIDE;
|
| - virtual void Stop() OVERRIDE;
|
|
|
| private:
|
| // For a detailed state diagram please see this link: http://goo.gl/8jAok
|
| @@ -53,7 +52,6 @@ class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder {
|
| kPendingDecode,
|
| kWaitingForKey,
|
| kDecodeFinished,
|
| - kStopped,
|
| kError
|
| };
|
|
|
| @@ -77,9 +75,6 @@ class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder {
|
| // Reset decoder and call |reset_cb_|.
|
| void DoReset();
|
|
|
| - // Free decoder resources and call |stop_cb_|.
|
| - void DoStop();
|
| -
|
| scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
|
|
| State state_;
|
|
|