commit | 663177b22a2738a759458f475b00bcd466a088f2 | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Wed Oct 14 03:38:36 2009 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Wed Oct 14 03:38:36 2009 |
tree | df1f4b4a64ccdb674af4dfdb1887b6d4aa2518cb | |
parent | 0ff4ddd286f1d42e7f53eab4df21e4b955f7d02a [diff] [blame] |
Adding support for Native Client in Chrome's task manager and "stats for nerds" screen. TEST=none BUG=http://code.google.com/p/nativeclient/issues/detail?id=108 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=28875 Review URL: http://codereview.chromium.org/267043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28944 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/common/child_process_info.cc b/chrome/common/child_process_info.cc index 71886f7..4eafde83 100644 --- a/chrome/common/child_process_info.cc +++ b/chrome/common/child_process_info.cc
@@ -54,6 +54,8 @@ return L"Zygote"; case SANDBOX_HELPER_PROCESS: return L"Sandbox helper"; + case NACL_PROCESS: + return L"Native Client module"; case UNKNOWN_PROCESS: default: DCHECK(false) << "Unknown child process type!"; @@ -75,6 +77,8 @@ message_id = IDS_TASK_MANAGER_UTILITY_PREFIX; } else if (type_ == ChildProcessInfo::PROFILE_IMPORT_PROCESS) { message_id = IDS_TASK_MANAGER_PROFILE_IMPORT_PREFIX; + } else if (type_ == ChildProcessInfo::NACL_PROCESS) { + message_id = IDS_TASK_MANAGER_NACL_PREFIX; } else { DCHECK(false) << "Need localized name for child process type."; return title;