chromium/remoting/protocol/fake_video_renderer.h

// 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.

#ifndef REMOTING_PROTOCOL_FAKE_VIDEO_RENDERER_H_
#define REMOTING_PROTOCOL_FAKE_VIDEO_RENDERER_H_

#include <list>
#include <memory>

#include "base/functional/callback.h"
#include "base/threading/thread_checker.h"
#include "remoting/protocol/frame_consumer.h"
#include "remoting/protocol/frame_stats.h"
#include "remoting/protocol/video_renderer.h"
#include "remoting/protocol/video_stub.h"

namespace remoting::protocol {

class FakeVideoStub : public VideoStub {};

class FakeFrameConsumer : public FrameConsumer {};

class FakeFrameStatsConsumer : public FrameStatsConsumer {};

class FakeVideoRenderer : public VideoRenderer {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_FAKE_VIDEO_RENDERER_H_