// Copyright 2019 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_PROFILER_PROFILE_BUILDER_H_ #define BASE_PROFILER_PROFILE_BUILDER_H_ #include <memory> #include <vector> #include "base/base_export.h" #include "base/profiler/frame.h" #include "base/profiler/metadata_recorder.h" #include "base/profiler/module_cache.h" #include "base/time/time.h" namespace base { // The ProfileBuilder interface allows the user to record profile information on // the fly in whatever format is desired. Functions are invoked by the profiler // on its own thread so must not block or perform expensive operations. class BASE_EXPORT ProfileBuilder { … }; } // namespace base #endif // BASE_PROFILER_PROFILE_BUILDER_H_