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

Unified Diff: components/cdm/common/cdm_messages_android.h

Issue 320383005: Add an IPC to return the platform supported key-system names in Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits. Created 6 years, 6 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: 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..738e10d3fb61769aeb0b7c19d2a92ad51a94abfe 100644
--- a/components/cdm/common/cdm_messages_android.h
+++ b/components/cdm/common/cdm_messages_android.h
@@ -29,8 +29,14 @@ IPC_STRUCT_END()
// Messages sent from the renderer to the browser.
-// Synchronously get a list of supported EME key systems.
+// Synchronously query a supported EME key system information.
ddorwin 2014/06/11 01:54:01 Synchronously query key system information. If the
ycheo (away) 2014/06/11 07:43:43 Done.
IPC_SYNC_MESSAGE_CONTROL1_1(
- ChromeViewHostMsg_GetSupportedKeySystems,
+ ChromeViewHostMsg_QueryKeySystemInfo,
SupportedKeySystemRequest /* key system information request */,
SupportedKeySystemResponse /* key system information response */)
+
+// Synchronously get a list of platform supported EME key system names
ddorwin 2014/06/11 01:54:01 nit: add a '-" before "supported" if that's really
ycheo (away) 2014/06/11 07:43:43 Done.
+// besides WideVine.
ddorwin 2014/06/11 01:54:01 My point was that these are a special class that a
ycheo (away) 2014/06/11 07:43:43 Done.
+IPC_SYNC_MESSAGE_CONTROL0_1(
+ ChromeViewHostMsg_GetPlatformKeySystemNames,
+ std::vector<std::string> /* key system names */)

Powered by Google App Engine
This is Rietveld 408576698