#ifndef COMPONENTS_GWP_ASAN_CLIENT_SAMPLING_MALLOC_SHIMS_H_
#define COMPONENTS_GWP_ASAN_CLIENT_SAMPLING_MALLOC_SHIMS_H_
#include <stddef.h>
#include "build/build_config.h"
#include "components/gwp_asan/client/export.h"
#include "components/gwp_asan/client/guarded_page_allocator.h"
#include "components/gwp_asan/client/gwp_asan.h"
namespace gwp_asan {
namespace internal {
GWP_ASAN_EXPORT void InstallMallocHooks(
const AllocatorSettings& settings,
GuardedPageAllocator::OutOfMemoryCallback callback);
}
GWP_ASAN_EXPORT bool IsGwpAsanMallocAllocation(const void* ptr);
}
#endif