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

Unified Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 1926533002: Convert Widevine and Android platform key systems to KeySystemProperties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Few small cleanups Created 4 years, 8 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: chrome/renderer/chrome_content_renderer_client.cc
diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc
index 3be44db4e3ac995486403a314e04a0ce71f7ab86..23741dbf918b084f161a88efc722bc5f047b452c 100644
--- a/chrome/renderer/chrome_content_renderer_client.cc
+++ b/chrome/renderer/chrome_content_renderer_client.cc
@@ -1243,6 +1243,11 @@ bool ChromeContentRendererClient::AllowPepperMediaStreamAPI(
void ChromeContentRendererClient::AddKeySystems(
std::vector<media::KeySystemInfo>* key_systems) {
+ AddChromeKeySystemsInfo(key_systems);
+}
+
+void ChromeContentRendererClient::AddSupportedKeySystems(
xhwang 2016/04/27 19:28:39 It might be worth mentioning in the content client
halliwell 2016/04/27 22:20:13 It is already mentioned that the KeySystemInfo API
+ std::vector<std::unique_ptr<::media::KeySystemProperties>>* key_systems) {
AddChromeKeySystems(key_systems);
}

Powered by Google App Engine
This is Rietveld 408576698