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

Unified Diff: base/debug/activity_tracker.cc

Issue 2927653003: Stability instrumentation: add a Vectored Exception Handler (Closed)
Patch Set: A few comments Created 3 years, 6 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: base/debug/activity_tracker.cc
diff --git a/base/debug/activity_tracker.cc b/base/debug/activity_tracker.cc
index 04a293cd09fa9ffd02acb7e5e471813258d3cdbb..3ff8928b58450a0f01a4a1dca8935e67e3478e12 100644
--- a/base/debug/activity_tracker.cc
+++ b/base/debug/activity_tracker.cc
@@ -1601,6 +1601,12 @@ void GlobalActivityTracker::RecordFieldTrial(const std::string& trial_name,
process_data_.SetString(key, group_name);
}
+void GlobalActivityTracker::RecordException(const void* pc,
+ const void* origin,
+ uint32_t code) {
+ RecordExceptionImpl(pc, origin, code);
+}
+
void GlobalActivityTracker::MarkDeleted() {
allocator_->SetMemoryState(PersistentMemoryAllocator::MEMORY_DELETED);
}

Powered by Google App Engine
This is Rietveld 408576698