// Copyright 2024 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_TRACING_PERFETTO_LOGGER_H_ #define V8_TRACING_PERFETTO_LOGGER_H_ #include "src/logging/code-events.h" namespace v8 { namespace internal { class Isolate; // Implementation that writes events to a Perfetto data source. class PerfettoLogger : public LogEventListener { … }; } // namespace internal } // namespace v8 #endif // V8_TRACING_PERFETTO_LOGGER_H_