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

Unified Diff: chromecast/media/base/key_systems_common_simple.cc

Issue 962793005: Adds MediaClientAndroid to support embedder/MediaDrmBridge interaction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: overhaul: creates MediaClientAndroid (browser-side client), eliminates Java-based MediaDrmBridge ke… Created 5 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: chromecast/media/base/key_systems_common_simple.cc
diff --git a/chromecast/media/base/key_systems_common_simple.cc b/chromecast/media/base/key_systems_common_simple.cc
index e6dbd02890298d0f97a9cb64240d6b8f47f75c0a..851a5d79f033ea80f3215729f38f1a746dc7fe27 100644
--- a/chromecast/media/base/key_systems_common_simple.cc
+++ b/chromecast/media/base/key_systems_common_simple.cc
@@ -11,5 +11,12 @@ CastKeySystem GetPlatformKeySystemByName(const std::string& key_system_name) {
return KEY_SYSTEM_NONE;
}
+#if defined(OS_ANDROID)
+std::vector<std::pair<std::string, std::vector<uint8_t>>>
+GetPlatformKeySystemUUIDMappings() {
+ return std::vector<std::pair<std::string, std::vector<uint8_t>>>();
+}
+#endif
+
} // namespace media
} // namespace chromecast

Powered by Google App Engine
This is Rietveld 408576698