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

Unified Diff: chrome/common/child_process_info.cc

Issue 807005: Add support for showing NaCl 64-bit processes in Chrome's task manager and about:memory page (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | « chrome/browser/memory_details_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/child_process_info.cc
===================================================================
--- chrome/common/child_process_info.cc (revision 41347)
+++ chrome/common/child_process_info.cc (working copy)
@@ -56,6 +56,8 @@
return L"Sandbox helper";
case NACL_LOADER_PROCESS:
return L"Native Client module";
+ case NACL_BROKER_PROCESS:
+ return L"Native Client broker";
case UNKNOWN_PROCESS:
default:
DCHECK(false) << "Unknown child process type!";
@@ -79,6 +81,8 @@
message_id = IDS_TASK_MANAGER_PROFILE_IMPORT_PREFIX;
} else if (type_ == ChildProcessInfo::NACL_LOADER_PROCESS) {
message_id = IDS_TASK_MANAGER_NACL_PREFIX;
+ } else if (type_ == ChildProcessInfo::NACL_BROKER_PROCESS) {
+ message_id = IDS_TASK_MANAGER_NACL_BROKER_PREFIX;
} else {
DCHECK(false) << "Need localized name for child process type.";
return title;
« no previous file with comments | « chrome/browser/memory_details_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698