#include "media/base/content_decryption_module.h"
#include "media/base/cdm_promise.h"
namespace media {
ContentDecryptionModule::ContentDecryptionModule() = default;
ContentDecryptionModule::~ContentDecryptionModule() = default;
void ContentDecryptionModule::GetStatusForPolicy(
HdcpVersion min_hdcp_version,
std::unique_ptr<KeyStatusCdmPromise> promise) { … }
void ContentDecryptionModule::DeleteOnCorrectThread() const { … }
void ContentDecryptionModuleTraits::Destruct(
const ContentDecryptionModule* cdm) { … }
std::optional<media::HdcpVersion> MaybeHdcpVersionFromString(
const std::string& hdcp_version_string) { … }
}