// Copyright 2012 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_THREADING_THREAD_ID_NAME_MANAGER_H_ #define BASE_THREADING_THREAD_ID_NAME_MANAGER_H_ #include <map> #include <string> #include <vector> #include "base/base_export.h" #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "base/synchronization/lock.h" #include "base/threading/platform_thread.h" namespace base { template <typename T> struct DefaultSingletonTraits; class BASE_EXPORT ThreadIdNameManager { … }; } // namespace base #endif // BASE_THREADING_THREAD_ID_NAME_MANAGER_H_