| Index: media/crypto/aes_decryptor.h
|
| diff --git a/media/crypto/aes_decryptor.h b/media/crypto/aes_decryptor.h
|
| index b91ccd48dae99a521aff37830703cd1f8f8ed8e9..d628560b186479fcf5d3c9ef32e330969039c680 100644
|
| --- a/media/crypto/aes_decryptor.h
|
| +++ b/media/crypto/aes_decryptor.h
|
| @@ -34,16 +34,13 @@ class MEDIA_EXPORT AesDecryptor : public MediaKeys, public Decryptor {
|
| virtual ~AesDecryptor();
|
|
|
| // MediaKeys implementation.
|
| - virtual bool GenerateKeyRequest(const std::string& key_system,
|
| - const std::string& type,
|
| + virtual bool GenerateKeyRequest(const std::string& type,
|
| const uint8* init_data,
|
| int init_data_length) OVERRIDE;
|
| - virtual void AddKey(const std::string& key_system,
|
| - const uint8* key, int key_length,
|
| + virtual void AddKey(const uint8* key, int key_length,
|
| const uint8* init_data, int init_data_length,
|
| const std::string& session_id) OVERRIDE;
|
| - virtual void CancelKeyRequest(const std::string& key_system,
|
| - const std::string& session_id) OVERRIDE;
|
| + virtual void CancelKeyRequest(const std::string& session_id) OVERRIDE;
|
|
|
| // Decryptor implementation.
|
| virtual MediaKeys* GetMediaKeys() OVERRIDE;
|
|
|