Index: components/cdm/common/cdm_messages_android.h |
diff --git a/components/cdm/common/cdm_messages_android.h b/components/cdm/common/cdm_messages_android.h |
index e63f81b01cd8f9386da3ad1da8154cf2a0b98cda..0b60bfa8a54fc05979ea97faff9dce02c350dcf6 100644 |
--- a/components/cdm/common/cdm_messages_android.h |
+++ b/components/cdm/common/cdm_messages_android.h |
@@ -29,8 +29,13 @@ IPC_STRUCT_END() |
// Messages sent from the renderer to the browser. |
-// Synchronously get a list of supported EME key systems. |
+// Synchronously get an supported EME key system information. |
ddorwin
2014/06/10 18:48:04
nit: s/an/a/
But the comment should probably be up
ycheo (away)
2014/06/11 00:08:22
Done.
|
IPC_SYNC_MESSAGE_CONTROL1_1( |
- ChromeViewHostMsg_GetSupportedKeySystems, |
+ CdmHostMsg_GetSupportedKeySystem, |
SupportedKeySystemRequest /* key system information request */, |
SupportedKeySystemResponse /* key system information response */) |
+ |
+// Synchronously get a list of supported EME key system names. |
+IPC_SYNC_MESSAGE_CONTROL0_1( |
+ CdmHostMsg_GetAllSupportedKeySystemNames, |
+ std::vector<std::string> /* key system information response */) |