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

Unified Diff: content_decryption_module.h

Issue 852553003: Add |legacy_destination_url| to SessionMessage in CDM_7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/cdm
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content_decryption_module.h
diff --git a/content_decryption_module.h b/content_decryption_module.h
index e5353b5562ee0a53260c01ff44a83b799aba9504..13397746fff0d51d1099f111df4c4b7f5f046374 100644
--- a/content_decryption_module.h
+++ b/content_decryption_module.h
@@ -997,11 +997,14 @@ class Host_7 {
// Called by the CDM when it has a message for session |session_id|.
// Size parameters should not include null termination.
+ // |legacy_destination_url| is included only for the prefixed API.
ddorwin 2015/01/13 18:01:07 nit: For additional clarity and similarity with 10
xhwang 2015/01/13 18:04:14 This sounds like implementation detail of specific
jrummell 2015/01/13 18:40:45 Done. There is no comment on CDM_6 OnSessionMessag
jrummell 2015/01/13 18:40:45 Agreed.
virtual void OnSessionMessage(const char* session_id,
uint32_t session_id_size,
MessageType message_type,
const char* message,
- uint32_t message_size) = 0;
+ uint32_t message_size,
+ const char* legacy_destination_url,
+ uint32_t legacy_destination_url_length) = 0;
// Called by the CDM when there has been a change in keys or their status for
// session |session_id|. |has_additional_usable_key| should be set if a
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698