#ifndef REMOTING_PROTOCOL_WEBRTC_VIDEO_TRACK_SOURCE_H_
#define REMOTING_PROTOCOL_WEBRTC_VIDEO_TRACK_SOURCE_H_
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "remoting/codec/webrtc_video_encoder.h"
#include "third_party/webrtc/api/media_stream_interface.h"
#include "third_party/webrtc/api/notifier.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
#include <memory>
namespace remoting::protocol {
class WebrtcVideoTrackSource
: public webrtc::Notifier<webrtc::VideoTrackSourceInterface> { … };
}
#endif