blob: 7fe5fc5c7bf0114548ecec4114f36aee785881ed [file] [log] [blame]
// Copyright (c) 2018 The Chromium Authors. All rights reserved.
// 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_CRASH_KEY_NAME_H_
#define COMPONENTS_GWP_ASAN_COMMON_CRASH_KEY_NAME_H_
namespace gwp_asan {
// The name of the crash key used to convey the address of the AllocatorState
// for the malloc/PartitionAlloc hooks to the crash handler.
const char kMallocCrashKey[] = "gwp-asan-malloc";
const char kPartitionAllocCrashKey[] = "gwp-asan-partitionalloc";
} // namespace gwp_asan
#endif // COMPONENTS_GWP_ASAN_COMMON_CRASH_KEY_NAME_H_