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

Unified Diff: content/browser/child_process_launcher.cc

Issue 837633008: Hook UBSAN, MSAN to exit handler(s) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a style nit in old code. Created 5 years, 11 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
« no previous file with comments | « no previous file | content/child/child_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/child_process_launcher.cc
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
index e2b1e2b11e423632bea942380186448e259e9864..0599ffef133989ccc28481f13b813ac50019b9f9 100644
--- a/content/browser/child_process_launcher.cc
+++ b/content/browser/child_process_launcher.cc
@@ -165,7 +165,8 @@ ChildProcessLauncher::Context::Context()
starting_(true),
// TODO(earthdok): Re-enable on CrOS http://crbug.com/360622
#if (defined(ADDRESS_SANITIZER) || defined(LEAK_SANITIZER) || \
- defined(THREAD_SANITIZER)) && !defined(OS_CHROMEOS)
+ defined(MEMORY_SANITIZER) || defined(THREAD_SANITIZER) || \
+ defined(UNDEFINED_SANITIZER)) && !defined(OS_CHROMEOS)
terminate_child_on_shutdown_(false) {
#else
terminate_child_on_shutdown_(true) {
« no previous file with comments | « no previous file | content/child/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698