#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 { … };
}
#endif