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

Unified Diff: android_webview/renderer/aw_key_systems.cc

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: Addressed xhwang's comments. 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
« no previous file with comments | « no previous file | chrome/renderer/media/chrome_key_systems.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/renderer/aw_key_systems.cc
diff --git a/android_webview/renderer/aw_key_systems.cc b/android_webview/renderer/aw_key_systems.cc
index fb17c01b506a55c129fa6bbaace09800b3e6b6da..2076c92d5e6e281bcfca567a353cc9848feffa67 100644
--- a/android_webview/renderer/aw_key_systems.cc
+++ b/android_webview/renderer/aw_key_systems.cc
@@ -3,13 +3,14 @@
// found in the LICENSE file.
#include "android_webview/renderer/aw_key_systems.h"
-#include "components/cdm/renderer/widevine_key_systems.h"
+#include "components/cdm/renderer/android_key_systems.h"
namespace android_webview {
void AwAddKeySystems(
std::vector<content::KeySystemInfo>* key_systems_info) {
cdm::AddAndroidWidevine(key_systems_info);
+ cdm::AddAndroidPlatformKeySystems(key_systems_info);
}
} // namespace android_webview
« no previous file with comments | « no previous file | chrome/renderer/media/chrome_key_systems.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698