// 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. #include "third_party/blink/renderer/modules/mediarecorder/key_frame_request_processor.h" #include "base/functional/overloaded.h" #include "base/logging.h" namespace blink { KeyFrameRequestProcessor::KeyFrameRequestProcessor(Configuration config) : … { … } void KeyFrameRequestProcessor::OnKeyFrame(base::TimeTicks now) { … } bool KeyFrameRequestProcessor::OnFrameAndShouldRequestKeyFrame( base::TimeTicks now) { … } } // namespace blink