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

Unified Diff: media/base/android/media_source_player.cc

Issue 23513055: Populate canPlayType to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moving ipc to chrome/common/ Created 7 years, 3 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: media/base/android/media_source_player.cc
diff --git a/media/base/android/media_source_player.cc b/media/base/android/media_source_player.cc
index 5abf157de9b628bf4597278149dec81fa397b92f..a7de25040dcb907a50117baecb898315014fb4fb 100644
--- a/media/base/android/media_source_player.cc
+++ b/media/base/android/media_source_player.cc
@@ -33,8 +33,8 @@ bool MediaSourcePlayer::IsTypeSupported(
const std::string& security_level,
const std::string& container,
ddorwin 2013/09/16 17:58:10 What is the plan for the container parameter?
qinmin 2013/09/17 19:21:06 see above, the function is removed On 2013/09/16 1
const std::vector<std::string>& codecs) {
- if (!MediaDrmBridge::IsCryptoSchemeSupported(scheme_uuid, container)) {
- DVLOG(1) << "UUID and container '" << container << "' not supported.";
xhwang 2013/09/17 18:56:46 ditto, probably leave that as is?
qinmin 2013/09/17 21:26:23 Done.
+ if (!MediaDrmBridge::IsCryptoSchemeSupported(scheme_uuid)) {
+ DVLOG(1) << "UUID not supported.";
return false;
}
« media/base/android/media_drm_bridge.cc ('K') | « media/base/android/media_drm_bridge.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698