// 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 PARTITION_ALLOC_POINTERS_RAW_PTR_COUNTING_IMPL_FOR_TEST_H_ #define PARTITION_ALLOC_POINTERS_RAW_PTR_COUNTING_IMPL_FOR_TEST_H_ #include <climits> #include "partition_alloc/pointers/raw_ptr.h" #include "partition_alloc/pointers/raw_ptr_noop_impl.h" namespace base::test { // Provides a raw_ptr/raw_ref implementation that performs accounting for test // purposes. It performs extra bookkeeping, e.g. to track the number of times // the raw_ptr is wrapped, unrwapped, etc. // // Test only. struct RawPtrCountingImplForTest : public base::internal::RawPtrNoOpImpl { … }; } // namespace base::test #endif // PARTITION_ALLOC_POINTERS_RAW_PTR_COUNTING_IMPL_FOR_TEST_H_