summaryrefslogtreecommitdiffstats
path: root/components/cdm/renderer/widevine_key_systems.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/cdm/renderer/widevine_key_systems.cc')
-rw-r--r--components/cdm/renderer/widevine_key_systems.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/components/cdm/renderer/widevine_key_systems.cc b/components/cdm/renderer/widevine_key_systems.cc
index 4931bd7..821dd06 100644
--- a/components/cdm/renderer/widevine_key_systems.cc
+++ b/components/cdm/renderer/widevine_key_systems.cc
@@ -22,13 +22,6 @@ using media::SupportedCodecs;
namespace cdm {
-// Return |name|'s parent key system.
-static std::string GetDirectParentName(const std::string& name) {
- size_t last_period = name.find_last_of('.');
- DCHECK_GT(last_period, 0u);
- return name.substr(0u, last_period);
-}
-
void AddWidevineWithCodecs(
WidevineCdmType widevine_cdm_type,
SupportedCodecs supported_codecs,
@@ -47,8 +40,6 @@ void AddWidevineWithCodecs(
switch (widevine_cdm_type) {
case WIDEVINE:
- // For standard Widevine, add parent name.
- info.parent_key_system = GetDirectParentName(kWidevineKeySystem);
break;
#if defined(OS_ANDROID)
case WIDEVINE_HR_NON_COMPOSITING: