// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40284755): Remove this and spanify to fix the errors. #pragma allow_unsafe_buffers #endif #include "base/test/perf_log.h" #include "base/files/file_util.h" #include "base/notreached.h" namespace base { static FILE* perf_log_file = …; bool InitPerfLog(const FilePath& log_file) { … } void FinalizePerfLog() { … } void LogPerfResult(const char* test_name, double value, const char* units) { … } } // namespace base