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

Unified Diff: content/renderer/media/android/proxy_media_keys.cc

Issue 185993004: Encrypted Media: Confine UUID code to MediaDrmBridge. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated tests Created 6 years, 10 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: content/renderer/media/android/proxy_media_keys.cc
diff --git a/content/renderer/media/android/proxy_media_keys.cc b/content/renderer/media/android/proxy_media_keys.cc
index 5510950d2dcdce25dc1814abad287d8e79be58d9..69f63657cc3f53e0a96222a6bd1b666b6721cc93 100644
--- a/content/renderer/media/android/proxy_media_keys.cc
+++ b/content/renderer/media/android/proxy_media_keys.cc
@@ -40,9 +40,7 @@ void ProxyMediaKeys::InitializeCdm(const std::string& key_system,
#if defined(ENABLE_PEPPER_CDMS)
ddorwin 2014/03/04 20:00:56 Do we need any of these ifdefs? This is only Andro
xhwang 2014/03/05 21:52:33 Done.
NOTIMPLEMENTED();
#elif defined(OS_ANDROID)
- std::vector<uint8> uuid = GetUUID(key_system);
- DCHECK(!uuid.empty());
- manager_->InitializeCdm(cdm_id_, this, uuid, frame_url);
+ manager_->InitializeCdm(cdm_id_, this, key_system, frame_url);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698