Index: sandbox/win/src/target_process.cc |
diff --git a/sandbox/win/src/target_process.cc b/sandbox/win/src/target_process.cc |
index d163cfb5504840d4308607420ce78bc67b08c476..b1ad5802bcf1edbdce4289722c0dc742a0469037 100644 |
--- a/sandbox/win/src/target_process.cc |
+++ b/sandbox/win/src/target_process.cc |
@@ -10,6 +10,7 @@ |
#include <memory> |
#include <utility> |
+#include "base/debug/activity_tracker.h" |
#include "base/macros.h" |
#include "base/memory/free_deleter.h" |
#include "base/win/startup_information.h" |
@@ -160,6 +161,8 @@ ResultCode TargetProcess::Create( |
return SBOX_ERROR_CANNOT_FIND_BASE_ADDRESS; |
} |
+ base::debug::GlobalActivityTracker::RecordProcessLaunchIfEnabled( |
manzagop (departed)
2017/02/17 19:39:54
Will these ever be recorded as exiting?
I guess w
bcwhite
2017/02/17 20:31:53
Yes, but it's recognized in a different file. In
|
+ process_info.process_id()); |
sandbox_process_info_.Set(process_info.Take()); |
return SBOX_ALL_OK; |
} |