Index: media/crypto/aes_decryptor.h |
diff --git a/media/crypto/aes_decryptor.h b/media/crypto/aes_decryptor.h |
index 4ea52a6827212b1339bba0423b33068df6d529cd..2df8613dfb5b882f71b08c7008c794a074509c55 100644 |
--- a/media/crypto/aes_decryptor.h |
+++ b/media/crypto/aes_decryptor.h |
@@ -51,6 +51,13 @@ class MEDIA_EXPORT AesDecryptor : public Decryptor { |
virtual void Decrypt(const scoped_refptr<DecoderBuffer>& encrypted, |
const DecryptCB& decrypt_cb) OVERRIDE; |
virtual void CancelDecrypt() OVERRIDE; |
+ virtual void InitializeVideoDecoder(const VideoDecoderConfig& config, |
+ const DecoderInitCB& init_cb) OVERRIDE; |
+ virtual void DecryptAndDecodeVideo( |
+ const scoped_refptr<DecoderBuffer>& encrypted, |
+ const VideoDecodeCB& video_decode_cb) OVERRIDE; |
+ virtual void CancelDecryptAndDecodeVideo() OVERRIDE; |
+ virtual void StopVideoDecoder() OVERRIDE; |
private: |
// TODO(fgalligan): Remove this and change KeyMap to use crypto::SymmetricKey |