123456789101112131415161718192021222324 |
- #ifndef BASE_TEST_PERF_LOG_H_
- #define BASE_TEST_PERF_LOG_H_
- namespace base {
- class FilePath;
- bool InitPerfLog(const FilePath& log_path);
- void FinalizePerfLog();
- void LogPerfResult(const char* test_name, double value, const char* units);
- }
- #endif
|