#include <stdint.h>
#include <memory>
#include "media/base/video_frame.h"
#include "media/cdm/api/content_decryption_module.h"
#include "media/cdm/cdm_helpers.h"
#include "media/cdm/simple_cdm_allocator.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
class TestCdmBuffer final : public cdm::Buffer { … };
class SimpleCdmAllocatorTest : public testing::Test { … };
TEST_F(SimpleCdmAllocatorTest, CreateCdmBuffer) { … }
TEST_F(SimpleCdmAllocatorTest, CreateCdmVideoFrame) { … }
TEST_F(SimpleCdmAllocatorTest, TransformToVideoFrame) { … }
}