Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(609)

Unified Diff: media/blink/cdm_session_adapter.cc

Issue 813683005: Add |legacy_destination_url| back to SessionMessage for EME (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/blink/cdm_session_adapter.cc
diff --git a/media/blink/cdm_session_adapter.cc b/media/blink/cdm_session_adapter.cc
index 29fc8bb797de59fad3d3cc3bf878645ee835ccf3..3c1c5c643fc1f824fed570daa76958a95b95be02 100644
--- a/media/blink/cdm_session_adapter.cc
+++ b/media/blink/cdm_session_adapter.cc
@@ -119,7 +119,8 @@ const std::string& CdmSessionAdapter::GetKeySystemUMAPrefix() const {
void CdmSessionAdapter::OnSessionMessage(const std::string& web_session_id,
MediaKeys::MessageType message_type,
- const std::vector<uint8>& message) {
+ const std::vector<uint8>& message,
+ const GURL& legacy_destination_url) {
xhwang 2015/01/13 18:45:13 /* legacy_destination_url */ to be clear that the
jrummell 2015/01/13 19:46:31 Done.
WebContentDecryptionModuleSessionImpl* session = GetSession(web_session_id);
DLOG_IF(WARNING, !session) << __FUNCTION__ << " for unknown session "
<< web_session_id;

Powered by Google App Engine
This is Rietveld 408576698