// 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_STACK_BUFFER_H_ #define BASE_PROFILER_STACK_BUFFER_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include "base/base_export.h" #include "base/memory/aligned_memory.h" #include "build/build_config.h" namespace base { // This class contains a buffer for stack copies that can be shared across // multiple instances of StackSampler. class BASE_EXPORT StackBuffer { … }; } // namespace base #endif // BASE_PROFILER_STACK_BUFFER_H_