Index: Source/platform/drm/ContentDecryptionModuleSession.cpp |
diff --git a/Source/platform/drm/ContentDecryptionModuleSession.cpp b/Source/platform/drm/ContentDecryptionModuleSession.cpp |
index 0882ffb429093f746f83f10079b9b79db0e6ed11..04d7801cd4ff42ed5b6fc4b400e5c8c5eb7b5945 100644 |
--- a/Source/platform/drm/ContentDecryptionModuleSession.cpp |
+++ b/Source/platform/drm/ContentDecryptionModuleSession.cpp |
@@ -60,9 +60,9 @@ void ContentDecryptionModuleSession::generateKeyRequest(const String& mimeType, |
m_session->generateKeyRequest(mimeType, initData.data(), initData.length()); |
} |
-void ContentDecryptionModuleSession::update(const Uint8Array& key) |
+void ContentDecryptionModuleSession::update(const Uint8Array& response) |
{ |
- m_session->update(key.data(), key.length()); |
+ m_session->update(response.data(), response.length()); |
} |
void ContentDecryptionModuleSession::close() |