chromium/components/viz/service/display/overdraw_tracker.h

// Copyright 2024 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_DISPLAY_OVERDRAW_TRACKER_H_
#define COMPONENTS_VIZ_SERVICE_DISPLAY_OVERDRAW_TRACKER_H_

#include <cstdint>
#include <vector>

#include "base/time/time.h"
#include "components/viz/service/viz_service_export.h"

namespace viz {
class AggregatedFrame;

// Estimates overdraw of aggregated frames. Used in tests to
// get the overdraw data over a period of time.
class VIZ_SERVICE_EXPORT OverdrawTracker {};

}  // namespace viz

#endif  // COMPONENTS_VIZ_SERVICE_DISPLAY_OVERDRAW_TRACKER_H_