| Index: webkit/media/crypto/proxy_decryptor.h
|
| diff --git a/webkit/media/crypto/proxy_decryptor.h b/webkit/media/crypto/proxy_decryptor.h
|
| index 4d42ea993127197192870ec4fae0408e3aa6ec54..6b529493c970fa1965b2f9e86ed667785126aeb6 100644
|
| --- a/webkit/media/crypto/proxy_decryptor.h
|
| +++ b/webkit/media/crypto/proxy_decryptor.h
|
| @@ -57,6 +57,13 @@ class ProxyDecryptor : public media::Decryptor {
|
| virtual void Decrypt(const scoped_refptr<media::DecoderBuffer>& encrypted,
|
| const DecryptCB& decrypt_cb) OVERRIDE;
|
| virtual void Stop() OVERRIDE;
|
| + virtual void InitializeVideoDecoder(const media::VideoDecoderConfig& config,
|
| + const DecoderInitCB& init_cb) OVERRIDE;
|
| + virtual void DecryptAndDecodeVideo(
|
| + const scoped_refptr<media::DecoderBuffer>& encrypted,
|
| + const VideoDecodeCB& video_decode_cb) OVERRIDE;
|
| + virtual void CancelDecryptAndDecodeVideo() OVERRIDE;
|
| + virtual void StopVideoDecoder() OVERRIDE;
|
|
|
| private:
|
| scoped_ptr<media::Decryptor> CreatePpapiDecryptor(
|
|
|