// Copyright 2019 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/begin_frame_tracker.h" namespace viz { void BeginFrameTracker::SentBeginFrame(const BeginFrameArgs& args) { … } void BeginFrameTracker::ReceivedAck(const BeginFrameAck& ack) { … } bool BeginFrameTracker::ShouldThrottleBeginFrame() const { … } bool BeginFrameTracker::ShouldStopBeginFrame() const { … } bool BeginFrameTracker::MatchesLastSent(const BeginFrameAck& ack) { … } } // namespace viz