| Index: media/blink/key_system_config_selector.cc
|
| diff --git a/media/blink/key_system_config_selector.cc b/media/blink/key_system_config_selector.cc
|
| index 2e4024b9caa1aa4078c792339e45e6886d68bce2..441aed0f01a4ef5b262f5bada68bfbc197474331 100644
|
| --- a/media/blink/key_system_config_selector.cc
|
| +++ b/media/blink/key_system_config_selector.cc
|
| @@ -670,8 +670,10 @@ KeySystemConfigSelector::GetSupportedConfiguration(
|
|
|
| // 15. If the videoCapabilities and audioCapabilities members in candidate
|
| // configuration are both empty, return NotSupported.
|
| - // TODO(jrummell): Enforce this once the deprecation warning is removed.
|
| - // See http://crbug.com/616233.
|
| + if (candidate.videoCapabilities.isEmpty() &&
|
| + candidate.audioCapabilities.isEmpty()) {
|
| + return CONFIGURATION_NOT_SUPPORTED;
|
| + }
|
|
|
| // 16. If the videoCapabilities member in candidate configuration is
|
| // non-empty:
|
|
|