| Index: components/cdm/renderer/widevine_key_systems.cc
|
| diff --git a/components/cdm/renderer/widevine_key_systems.cc b/components/cdm/renderer/widevine_key_systems.cc
|
| index ec38ab6e733b3cfc853bfc2927fe051279f2f131..c1412c36af8d0ccfe1771073cceeb6e864668a6d 100644
|
| --- a/components/cdm/renderer/widevine_key_systems.cc
|
| +++ b/components/cdm/renderer/widevine_key_systems.cc
|
| @@ -62,10 +62,10 @@ void AddWidevineWithCodecs(
|
| // associated initialization data type. KeySystems handles validating
|
| // |init_data_type| x |container| pairings.
|
| if (supported_codecs & media::EME_CODEC_WEBM_ALL)
|
| - info.supported_init_data_types |= media::EME_INIT_DATA_TYPE_WEBM;
|
| + info.supported_init_data_types |= media::kInitDataTypeMaskWebM;
|
| #if defined(USE_PROPRIETARY_CODECS)
|
| if (supported_codecs & media::EME_CODEC_MP4_ALL)
|
| - info.supported_init_data_types |= media::EME_INIT_DATA_TYPE_CENC;
|
| + info.supported_init_data_types |= media::kInitDataTypeMaskCenc;
|
| #endif // defined(USE_PROPRIETARY_CODECS)
|
|
|
| info.max_audio_robustness = max_audio_robustness;
|
|
|