| Index: media/formats/webm/webm_video_client.cc
|
| diff --git a/media/formats/webm/webm_video_client.cc b/media/formats/webm/webm_video_client.cc
|
| index 9d0435f051dca2b1b80e8bca4f522a6ac450c03a..6e57dfbe4f6b6327be3a5e9fbc88da9e54d45d81 100644
|
| --- a/media/formats/webm/webm_video_client.cc
|
| +++ b/media/formats/webm/webm_video_client.cc
|
| @@ -33,7 +33,7 @@
|
| bool WebMVideoClient::InitializeConfig(
|
| const std::string& codec_id,
|
| const std::vector<uint8_t>& codec_private,
|
| - const EncryptionScheme& encryption_scheme,
|
| + bool is_encrypted,
|
| VideoDecoderConfig* config) {
|
| DCHECK(config);
|
|
|
| @@ -93,7 +93,7 @@
|
|
|
| config->Initialize(video_codec, profile, format, COLOR_SPACE_HD_REC709,
|
| coded_size, visible_rect, natural_size, codec_private,
|
| - encryption_scheme);
|
| + is_encrypted);
|
| return config->IsValidConfig();
|
| }
|
|
|
|
|