#ifndef CC_BENCHMARKS_BENCHMARK_INSTRUMENTATION_H_
#define CC_BENCHMARKS_BENCHMARK_INSTRUMENTATION_H_
#include "base/trace_event/trace_event.h"
#include "cc/cc_export.h"
#include "cc/debug/rendering_stats.h"
namespace cc {
namespace benchmark_instrumentation {
namespace internal {
constexpr const char* Category() { … }
const char kBeginFrameId[] = …;
}
const char kSendBeginFrame[] = …;
const char kDoBeginFrame[] = …;
class ScopedBeginFrameTask { … };
void IssueImplThreadRenderingStatsEvent(const RenderingStats& stats);
}
}
#endif