// 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. #ifndef SERVICES_TRACING_PUBLIC_CPP_PERFETTO_SYSTEM_PRODUCER_H_ #define SERVICES_TRACING_PUBLIC_CPP_PERFETTO_SYSTEM_PRODUCER_H_ #include "services/tracing/public/cpp/perfetto/perfetto_producer.h" #include "third_party/perfetto/include/perfetto/ext/tracing/core/producer.h" namespace tracing { class COMPONENT_EXPORT(TRACING_CPP) SystemProducer : public PerfettoProducer, public perfetto::Producer { … }; } // namespace tracing #endif // SERVICES_TRACING_PUBLIC_CPP_PERFETTO_SYSTEM_PRODUCER_H_