#ifndef REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_
#define REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_
#include <stdint.h>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "remoting/protocol/video_renderer.h"
#include "remoting/protocol/video_stub.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace webrtc {
class DesktopFrame;
}
namespace remoting {
class VideoDecoder;
namespace protocol {
class FrameConsumer;
struct FrameStats;
class FrameStatsConsumer;
}
class SoftwareVideoRenderer : public protocol::VideoRenderer,
public protocol::VideoStub { … };
}
#endif