chromium/third_party/blink/renderer/platform/video_capture/gpu_memory_buffer_test_support.h

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

#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_VIDEO_CAPTURE_GPU_MEMORY_BUFFER_TEST_SUPPORT_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_VIDEO_CAPTURE_GPU_MEMORY_BUFFER_TEST_SUPPORT_H_

#include <memory>

#include "base/memory/raw_ptr.h"
#include "gpu/ipc/common/gpu_memory_buffer_support.h"
#include "third_party/blink/renderer/platform/testing/io_task_runner_testing_platform_support.h"

namespace media {
class MockGpuVideoAcceleratorFactories;
}  // namespace media

namespace gpu {
struct Capabilities;
struct SharedImageCapabilities;
class TestSharedImageInterface;
}  // namespace gpu

namespace blink {

class FakeGpuMemoryBufferSupport : public gpu::GpuMemoryBufferSupport {};

class TestingPlatformSupportForGpuMemoryBuffer
    : public IOTaskRunnerTestingPlatformSupport {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_VIDEO_CAPTURE_GPU_MEMORY_BUFFER_TEST_SUPPORT_H_