chromium/components/gwp_asan/common/extreme_lightweight_detector_util.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#ifndef COMPONENTS_GWP_ASAN_COMMON_EXTREME_LIGHTWEIGHT_DETECTOR_UTIL_H_
#define COMPONENTS_GWP_ASAN_COMMON_EXTREME_LIGHTWEIGHT_DETECTOR_UTIL_H_

namespace gwp_asan::internal {

// Provides utility functions shared by the quarantine code and crash handler.
// The class name comes from ExtremeLightweightDetector, but it's also known as
// Extreme Lightweight UAF Detector (Extreme LUD or ELUD).
class ExtremeLightweightDetectorUtil {};

}  // namespace gwp_asan::internal

#endif  // COMPONENTS_GWP_ASAN_COMMON_EXTREME_LIGHTWEIGHT_DETECTOR_UTIL_H_