| // Copyright 2015 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "media/mojo/clients/mojo_cdm_factory.h" |
| |
| #include "base/bind.h" |
| #include "base/location.h" |
| #include "base/single_thread_task_runner.h" |
| #include "base/threading/thread_task_runner_handle.h" |
| #include "media/base/content_decryption_module.h" |
| #include "media/base/key_systems.h" |
| #include "media/cdm/aes_decryptor.h" |
| #include "media/mojo/clients/mojo_cdm.h" |
| #include "services/service_manager/public/cpp/connect.h" |
| #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
| |
| namespace media { |
| |
| MojoCdmFactory::MojoCdmFactory( |
| service_manager::mojom::InterfaceProvider* interface_provider) |
| : interface_provider_(interface_provider) { |
| DCHECK(interface_provider_); |
| } |
| |
| MojoCdmFactory::~MojoCdmFactory() {} |
| |
| void MojoCdmFactory::Create( |
| const std::string& key_system, |
| const GURL& security_origin, |
| const CdmConfig& cdm_config, |
| const SessionMessageCB& session_message_cb, |
| const SessionClosedCB& session_closed_cb, |
| const SessionKeysChangeCB& session_keys_change_cb, |
| const SessionExpirationUpdateCB& session_expiration_update_cb, |
| const CdmCreatedCB& cdm_created_cb) { |
| DVLOG(2) << __func__ << ": " << key_system; |
| |
| if (!security_origin.is_valid()) { |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, base::Bind(cdm_created_cb, nullptr, "Invalid origin.")); |
| return; |
| } |
| |
| // When MojoRenderer is used, the real Renderer is running in a remote process, |
| // which cannot use an AesDecryptor running locally. In this case, always |
| // create the MojoCdm, giving the remote CDM a chance to handle |key_system|. |
| // Note: We should not run AesDecryptor in the browser process except for |
| // testing. See http://crbug.com/441957 |
| #if !defined(ENABLE_MOJO_RENDERER) |
| if (CanUseAesDecryptor(key_system)) { |
| scoped_refptr<ContentDecryptionModule> cdm( |
| new AesDecryptor(security_origin, session_message_cb, session_closed_cb, |
| session_keys_change_cb)); |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, base::Bind(cdm_created_cb, cdm, "")); |
| return; |
| } |
| #endif |
| |
| mojom::ContentDecryptionModulePtr cdm_ptr; |
| service_manager::GetInterface<mojom::ContentDecryptionModule>( |
| interface_provider_, &cdm_ptr); |
| |
| MojoCdm::Create(key_system, security_origin, cdm_config, std::move(cdm_ptr), |
| session_message_cb, session_closed_cb, session_keys_change_cb, |
| session_expiration_update_cb, cdm_created_cb); |
| } |
| |
| } // namespace media |