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

Unified Diff: components/cdm/renderer/android_key_systems.cc

Issue 2712983004: Simplify/Cleanup MediaClient (Closed)
Patch Set: Fix test leak Created 3 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
« no previous file with comments | « chromecast/renderer/media/key_systems_cast.cc ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cdm/renderer/android_key_systems.cc
diff --git a/components/cdm/renderer/android_key_systems.cc b/components/cdm/renderer/android_key_systems.cc
index 71706cfb2cefec75cbd24f83bd9b1d4ef371ebc2..bd12b93422f9dad93596e7a319319967db208317 100644
--- a/components/cdm/renderer/android_key_systems.cc
+++ b/components/cdm/renderer/android_key_systems.cc
@@ -125,6 +125,7 @@ void AddAndroidWidevine(
: EmeSessionTypeSupport::NOT_SUPPORTED;
if (response.compositing_codecs != media::EME_CODEC_NONE) {
+ DVLOG(3) << __func__ << " Widevine supported.";
concrete_key_systems->emplace_back(new WidevineKeySystemProperties(
response.compositing_codecs, // Regular codecs.
response.non_compositing_codecs, // Hardware-secure codecs.
@@ -136,6 +137,7 @@ void AddAndroidWidevine(
EmeFeatureSupport::ALWAYS_ENABLED)); // Distinctive identifier.
} else {
// It doesn't make sense to support secure codecs but not regular codecs.
+ DVLOG(3) << __func__ << " Widevine NOT supported.";
DCHECK(response.non_compositing_codecs == media::EME_CODEC_NONE);
}
}
« no previous file with comments | « chromecast/renderer/media/key_systems_cast.cc ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698