// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/viz/service/frame_sinks/video_capture/video_frame_pool.h" #include <algorithm> #include <memory> namespace viz { VideoFramePool::VideoFramePool(int capacity) : … { … } VideoFramePool::~VideoFramePool() = default; float VideoFramePool::GetUtilization() const { … } } // namespace viz