// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_GWP_ASAN_COMMON_ALLOCATION_INFO_H_ #define COMPONENTS_GWP_ASAN_COMMON_ALLOCATION_INFO_H_ #include "base/containers/span.h" #include "base/threading/platform_thread.h" namespace gwp_asan::internal { // Information saved for allocations and deallocations. struct AllocationInfo { … }; } // namespace gwp_asan::internal #endif // COMPONENTS_GWP_ASAN_COMMON_ALLOCATION_INFO_H_