#include "base/timer/lap_timer.h"
#include "cc/base/rtree.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/perf/perf_result_reporter.h"
namespace cc {
namespace {
static const int kTimeLimitMillis = …;
static const int kWarmupRuns = …;
static const int kTimeCheckInterval = …;
template <typename Container>
size_t Accumulate(const Container& container) { … }
class RTreePerfTest : public testing::Test { … };
TEST_F(RTreePerfTest, Construct) { … }
TEST_F(RTreePerfTest, Search) { … }
}
}