// 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 "third_party/blink/renderer/platform/widget/compositing/widget_swap_queue.h" namespace blink { void WidgetSwapQueue::Queue(int source_frame_number, VisualStateRequestCallback callback, bool* is_first) { … } void WidgetSwapQueue::Drain(int source_frame_number) { … } void WidgetSwapQueue::GetCallbacks( Vector<VisualStateRequestCallback>* callbacks) { … } } // namespace blink