| Index: chromecast/media/cdm/chromecast_init_data.cc
|
| diff --git a/chromecast/media/cdm/chromecast_init_data.cc b/chromecast/media/cdm/chromecast_init_data.cc
|
| index 7f4d03fed00ad884670c8ce44d71d0c222f1d59b..b2ed2d9bf81042553d61fb4636a88d2539eac0c1 100644
|
| --- a/chromecast/media/cdm/chromecast_init_data.cc
|
| +++ b/chromecast/media/cdm/chromecast_init_data.cc
|
| @@ -5,7 +5,6 @@
|
| #include "chromecast/media/cdm/chromecast_init_data.h"
|
|
|
| #include "base/logging.h"
|
| -#include "base/stl_util.h"
|
| #include "media/base/bit_reader.h"
|
| #include "media/cdm/cenc_utils.h"
|
|
|
| @@ -51,7 +50,7 @@ bool FindChromecastInitData(const std::vector<uint8_t>& init_data,
|
| return false;
|
| }
|
|
|
| - ::media::BitReader reader(vector_as_array(&pssh_data), pssh_data.size());
|
| + ::media::BitReader reader(pssh_data.data(), pssh_data.size());
|
|
|
| uint16_t msg_type;
|
| RCHECK(reader.ReadBits(2 * 8, &msg_type));
|
|
|