| Index: media/cdm/cdm_adapter.cc
|
| diff --git a/media/cdm/cdm_adapter.cc b/media/cdm/cdm_adapter.cc
|
| index 3003d92117f2c7371fb1556dfab8ca6168dc8d30..84c87b8c522af78c66165107ab1c372c497e05b1 100644
|
| --- a/media/cdm/cdm_adapter.cc
|
| +++ b/media/cdm/cdm_adapter.cc
|
| @@ -10,7 +10,6 @@
|
| #include "base/bind.h"
|
| #include "base/callback_helpers.h"
|
| #include "base/logging.h"
|
| -#include "base/memory/ptr_util.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/threading/thread_task_runner_handle.h"
|
| #include "base/time/time.h"
|
| @@ -787,7 +786,7 @@
|
| keys.reserve(keys_info_count);
|
| for (uint32_t i = 0; i < keys_info_count; ++i) {
|
| const auto& info = keys_info[i];
|
| - keys.push_back(base::MakeUnique<CdmKeyInformation>(
|
| + keys.push_back(new CdmKeyInformation(
|
| info.key_id, info.key_id_size,
|
| ToCdmKeyInformationKeyStatus(info.status), info.system_code));
|
| }
|
|
|