From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- dom/media/fake-cdm/cdm-test-storage.h | 45 +++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 dom/media/fake-cdm/cdm-test-storage.h (limited to 'dom/media/fake-cdm/cdm-test-storage.h') diff --git a/dom/media/fake-cdm/cdm-test-storage.h b/dom/media/fake-cdm/cdm-test-storage.h new file mode 100644 index 0000000000..2c95cca6b5 --- /dev/null +++ b/dom/media/fake-cdm/cdm-test-storage.h @@ -0,0 +1,45 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef TEST_CDM_STORAGE_H__ +#define TEST_CDM_STORAGE_H__ + +#include +#include +#include +#include "content_decryption_module.h" + +#define IO_SUCCEEDED(x) ((x) == cdm::FileIOClient::Status::kSuccess) +#define IO_FAILED(x) ((x) != cdm::FileIOClient::Status::kSuccess) + +class ReadContinuation { + public: + virtual ~ReadContinuation() = default; + virtual void operator()(bool aSuccess, const uint8_t* aData, + uint32_t aDataSize) = 0; +}; + +void WriteRecord(cdm::Host_10* aHost, const std::string& aRecordName, + const std::string& aData, std::function&& aOnSuccess, + std::function&& aOnFailure); + +void WriteRecord(cdm::Host_10* aHost, const std::string& aRecordName, + const uint8_t* aData, uint32_t aNumBytes, + std::function&& aOnSuccess, + std::function&& aOnFailure); + +void ReadRecord( + cdm::Host_10* aHost, const std::string& aRecordName, + std::function&& aOnReadComplete); + +class OpenContinuation { + public: + virtual ~OpenContinuation() = default; + virtual void operator()(bool aSuccess) = 0; +}; + +void OpenRecord(cdm::Host_10* aHost, const std::string& aRecordName, + std::function&& aOpenComplete); +#endif // TEST_CDM_STORAGE_H__ -- cgit v1.2.3