// 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. #ifndef COMPONENTS_VIZ_SERVICE_FRAME_SINKS_VIDEO_CAPTURE_VIDEO_FRAME_POOL_H_ #define COMPONENTS_VIZ_SERVICE_FRAME_SINKS_VIDEO_CAPTURE_VIDEO_FRAME_POOL_H_ #include "base/memory/scoped_refptr.h" #include "components/viz/service/viz_service_export.h" #include "media/base/video_types.h" #include "media/capture/mojom/video_capture_buffer.mojom.h" #include "ui/gfx/geometry/size.h" namespace media { class VideoFrame; } namespace viz { // A pool of VideoFrames that can be transported efficiently across mojo service // boundaries. The underlying backing for VideoFrames depends on the concrete // implementation. class VIZ_SERVICE_EXPORT VideoFramePool { … }; } // namespace viz #endif // COMPONENTS_VIZ_SERVICE_FRAME_SINKS_VIDEO_CAPTURE_VIDEO_FRAME_POOL_H_