chromium/media/cdm/simple_cdm_allocator_unittest.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace media