blob: 7484d269f064e02681a4decd8d6b64c04994ea95 [file] [log] [blame]
Takashi Sakamoto31cfff642021-10-29 05:47:291// Copyright 2021 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_ALLOCATOR_PARTITION_ALLOC_SUPPORT_H_
6#define BASE_ALLOCATOR_PARTITION_ALLOC_SUPPORT_H_
7
8#include "base/allocator/partition_allocator/partition_alloc_config.h"
9#include "base/base_export.h"
10
11namespace base {
12namespace allocator {
13
14#if defined(PA_ALLOW_PCSCAN)
15BASE_EXPORT void RegisterPCScanStatsReporter();
16#endif
17
18} // namespace allocator
19} // namespace base
20
21#endif // BASE_ALLOCATOR_PARTITION_ALLOC_SUPPORT_H_