Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1240)

Unified Diff: syzygy/agent/asan/error_info.h

Issue 1992773002: [SyzyAsan] Enable Crashpad reporter as a 50/50 experiment. (Closed) Base URL: https://github.com/google/syzygy.git@master
Patch Set: Cleanup + unittests. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: syzygy/agent/asan/error_info.h
diff --git a/syzygy/agent/asan/error_info.h b/syzygy/agent/asan/error_info.h
index cef948d3171fffaa83c825972b80a661bc9fddbd..8e0cee5ea1bf5bc7d37645e178e4f38723bfe332 100644
--- a/syzygy/agent/asan/error_info.h
+++ b/syzygy/agent/asan/error_info.h
@@ -90,13 +90,15 @@ enum AsanFeature : uint32_t {
ASAN_FEATURE_ENABLE_LARGE_BLOCK_HEAP = (1 << 2),
// This feature flag is currently deprecated and ignored.
DEPRECATED_ASAN_FEATURE_ENABLE_KASKO = (1 << 3),
- ASAN_FEATURE_MAX = (1 << 4),
+ ASAN_FEATURE_ENABLE_CRASHPAD = (1 << 4),
+ ASAN_FEATURE_MAX = (1 << 5),
};
using AsanFeatureSet = uint32_t;
// Feature set for all valid features.
const AsanFeatureSet kAsanValidFeatures =
- ASAN_FEATURE_ENABLE_PAGE_PROTECTIONS | ASAN_FEATURE_ENABLE_LARGE_BLOCK_HEAP;
+ ASAN_FEATURE_ENABLE_PAGE_PROTECTIONS |
+ ASAN_FEATURE_ENABLE_LARGE_BLOCK_HEAP | ASAN_FEATURE_ENABLE_CRASHPAD;
// Feature set for all deprecated features.
const AsanFeatureSet kAsanDeprecatedFeatures =

Powered by Google App Engine
This is Rietveld 408576698