| Index: Source/core/html/HTMLMediaElement.cpp
|
| diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
|
| index 04510683b2aeff79f3da23de59d30575b832efb4..4ac2a209de21e07bb362fcaa30c4a09b4076a9fc 100644
|
| --- a/Source/core/html/HTMLMediaElement.cpp
|
| +++ b/Source/core/html/HTMLMediaElement.cpp
|
| @@ -2293,10 +2293,6 @@ void HTMLMediaElement::setSourceState(const String& state)
|
| #if ENABLE(ENCRYPTED_MEDIA)
|
| void HTMLMediaElement::webkitGenerateKeyRequest(const String& keySystem, PassRefPtr<Uint8Array> initData, ExceptionCode& ec)
|
| {
|
| -#if ENABLE(ENCRYPTED_MEDIA_V2)
|
| - PageConsole::reportDeprecation(scriptExecutionContext(), PrefixedMediaGenerateKeyRequest);
|
| -#endif
|
| -
|
| if (keySystem.isEmpty()) {
|
| ec = SYNTAX_ERR;
|
| return;
|
| @@ -2325,10 +2321,6 @@ void HTMLMediaElement::webkitGenerateKeyRequest(const String& keySystem, Excepti
|
|
|
| void HTMLMediaElement::webkitAddKey(const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionCode& ec)
|
| {
|
| -#if ENABLE(ENCRYPTED_MEDIA_V2)
|
| - PageConsole::reportDeprecation(scriptExecutionContext(), PrefixedMediaAddKey);
|
| -#endif
|
| -
|
| if (keySystem.isEmpty()) {
|
| ec = SYNTAX_ERR;
|
| return;
|
|
|