// 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_THREAD_DELEGATE_POSIX_H_ #define BASE_PROFILER_THREAD_DELEGATE_POSIX_H_ #include <memory> #include <vector> #include "base/base_export.h" #include "base/profiler/sampling_profiler_thread_token.h" #include "base/profiler/thread_delegate.h" #include "base/threading/platform_thread.h" namespace base { // Platform- and thread-specific implementation in support of stack sampling on // POSIX. class BASE_EXPORT ThreadDelegatePosix : public ThreadDelegate { … }; } // namespace base #endif // BASE_PROFILER_THREAD_DELEGATE_POSIX_H_