// 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_WEBRTC_FRAME_SCHEDULER_H_ #define REMOTING_PROTOCOL_WEBRTC_FRAME_SCHEDULER_H_ #include "base/functional/callback_forward.h" #include "base/time/time.h" namespace webrtc { class DesktopFrame; } // namespace webrtc namespace remoting::protocol { // An abstract interface for frame schedulers, which are responsible for // scheduling when video frames are captured and for defining encoding // parameters for each frame. class WebrtcFrameScheduler { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_WEBRTC_FRAME_SCHEDULER_H_