#ifndef BASE_TRACING_PERFETTO_PLATFORM_H_
#define BASE_TRACING_PERFETTO_PLATFORM_H_
#include "base/base_export.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/threading/thread_local_storage.h"
#include "third_party/perfetto/include/perfetto/base/thread_utils.h"
#include "third_party/perfetto/include/perfetto/tracing/platform.h"
namespace base {
namespace tracing {
class PerfettoTaskRunner;
class BASE_EXPORT PerfettoPlatform : public perfetto::Platform { … };
}
}
#endif