| Index: chrome/browser/memory_details.cc
|
| diff --git a/chrome/browser/memory_details.cc b/chrome/browser/memory_details.cc
|
| index ce72dc761be3382c9b954cb410b30f2ea871faae..39792269d99429a33cd6ed619e2f5d40a201c37e 100644
|
| --- a/chrome/browser/memory_details.cc
|
| +++ b/chrome/browser/memory_details.cc
|
| @@ -204,8 +204,6 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
|
|
|
| #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();
|
| @@ -339,8 +337,6 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
|
| #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
|
| }
|
|
|