// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIARECORDER_KEY_FRAME_REQUEST_PROCESSOR_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIARECORDER_KEY_FRAME_REQUEST_PROCESSOR_H_ #include "base/functional/callback.h" #include "base/time/time.h" #include "third_party/abseil-cpp/absl/types/variant.h" #include "third_party/blink/renderer/modules/modules_export.h" namespace blink { // Class handling the logic of periodically requesting keyframes. This class is // thread-compatible. class MODULES_EXPORT KeyFrameRequestProcessor { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_MEDIARECORDER_KEY_FRAME_REQUEST_PROCESSOR_H_