// 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. #ifndef CC_METRICS_EVENTS_METRICS_MANAGER_H_ #define CC_METRICS_EVENTS_METRICS_MANAGER_H_ #include <memory> #include <vector> #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "cc/cc_export.h" #include "cc/metrics/event_metrics.h" namespace cc { // Manages a list of active EventMetrics objects. Each thread (main or impl) has // its own instance of this class to help it determine which events have led to // a frame update. class CC_EXPORT EventsMetricsManager { … }; } // namespace cc #endif // CC_METRICS_EVENTS_METRICS_MANAGER_H_