// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef TOOLS_MEMORY_SIMULATOR_METRICS_PRINTER_H_ #define TOOLS_MEMORY_SIMULATOR_METRICS_PRINTER_H_ #include <memory> #include <vector> #include "base/time/time.h" #include "tools/memory/simulator/metrics_provider.h" namespace memory_simulator { // Outputs memory stats in CSV format to stdout. class MetricsPrinter { … }; } // namespace memory_simulator #endif // TOOLS_MEMORY_SIMULATOR_METRICS_PRINTER_H_