blob: 50d95a78575baa52355691f605d4502e7e40d7f1 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/cdm_context.h"
#include "build/build_config.h"
#include "media/base/callback_registry.h"
namespace media {
CdmContext::CdmContext() = default;
CdmContext::~CdmContext() = default;
std::unique_ptr<CallbackRegistration> CdmContext::RegisterEventCB(
EventCB /* event_cb */) {
return nullptr;
}
Decryptor* CdmContext::GetDecryptor() {
return nullptr;
}
absl::optional<base::UnguessableToken> CdmContext::GetCdmId() const {
return absl::nullopt;
}
std::string CdmContext::CdmIdToString(const base::UnguessableToken* cdm_id) {
return cdm_id ? cdm_id->ToString() : "null";
}
#if BUILDFLAG(IS_WIN)
bool CdmContext::RequiresMediaFoundationRenderer() {
return false;
}
scoped_refptr<MediaFoundationCdmProxy>
CdmContext::GetMediaFoundationCdmProxy() {
return nullptr;
}
#endif
#if BUILDFLAG(IS_ANDROID)
MediaCryptoContext* CdmContext::GetMediaCryptoContext() {
return nullptr;
}
#endif
#if BUILDFLAG(IS_FUCHSIA)
FuchsiaCdmContext* CdmContext::GetFuchsiaCdmContext() {
return nullptr;
}
#endif
#if BUILDFLAG(IS_CHROMEOS)
chromeos::ChromeOsCdmContext* CdmContext::GetChromeOsCdmContext() {
return nullptr;
}
#endif
} // namespace media