// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_TEST_LAUNCHER_TEST_LAUNCHER_TRACER_H_ #define BASE_TEST_LAUNCHER_TEST_LAUNCHER_TRACER_H_ #include <string> #include <vector> #include "base/synchronization/lock.h" #include "base/threading/platform_thread.h" #include "base/time/time.h" namespace base { class FilePath; // Records traces of test execution, e.g. to analyze performance. // Thread safe. class TestLauncherTracer { … }; } // namespace base #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_TRACER_H_