// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/capture/video/video_capture_buffer_tracker.h" namespace media { void VideoCaptureBufferTracker::SetHeldByProducer(bool new_held_by_producer) { … } void VideoCaptureBufferTracker::AddConsumerHolds(int count) { … } void VideoCaptureBufferTracker::RemoveConsumerHolds(int count) { … } bool VideoCaptureBufferTracker::IsSameGpuMemoryBuffer( const gfx::GpuMemoryBufferHandle& handle) const { … } void VideoCaptureBufferTracker::OnHeldByConsumersChanged( bool is_held_by_consumers) { … } } // namespace media