| Index: chrome/browser/memory_details.cc
|
| diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc
|
| index 39792269d99429a33cd6ed619e2f5d40a201c37e..ce72dc761be3382c9b954cb410b30f2ea871faae 100644
|
| --- a/chrome/browser/memory_details.cc
|
| +++ b/chrome/browser/memory_details.cc
|
| @@ -204,6 +204,8 @@
|
|
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| const pid_t zygote_pid = content::ZygoteHost::GetInstance()->GetPid();
|
| + const pid_t sandbox_helper_pid =
|
| + content::ZygoteHost::GetInstance()->GetSandboxHelperPid();
|
| #endif
|
|
|
| ProcessData* const chrome_browser = ChromeBrowser();
|
| @@ -337,6 +339,8 @@
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| if (process.pid == zygote_pid) {
|
| process.process_type = content::PROCESS_TYPE_ZYGOTE;
|
| + } else if (process.pid == sandbox_helper_pid) {
|
| + process.process_type = content::PROCESS_TYPE_SANDBOX_HELPER;
|
| }
|
| #endif
|
| }
|
|
|