summaryrefslogtreecommitdiffstats
path: root/chrome/common/child_process_info.cc
diff options
context:
space:
mode:
authorgregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 21:15:29 +0000
committergregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 21:15:29 +0000
commit38a0aea9fe83abeee258fced39da7be6253a9aa4 (patch)
treed1f7f43cfaeca2eca268b92e6458f9361d4a9345 /chrome/common/child_process_info.cc
parentb96117ce4792699d2192344784f1fb35f8c53400 (diff)
downloadchromium_src-38a0aea9fe83abeee258fced39da7be6253a9aa4.zip
chromium_src-38a0aea9fe83abeee258fced39da7be6253a9aa4.tar.gz
chromium_src-38a0aea9fe83abeee258fced39da7be6253a9aa4.tar.bz2
Revert 28875 - 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 Review URL: http://codereview.chromium.org/267043 TBR=gregoryd@google.com Review URL: http://codereview.chromium.org/266067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process_info.cc')
-rw-r--r--chrome/common/child_process_info.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/common/child_process_info.cc b/chrome/common/child_process_info.cc
index 4eafde8..71886f7 100644
--- a/chrome/common/child_process_info.cc
+++ b/chrome/common/child_process_info.cc
@@ -54,8 +54,6 @@ std::wstring ChildProcessInfo::GetTypeNameInEnglish(
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!";
@@ -77,8 +75,6 @@ std::wstring ChildProcessInfo::GetLocalizedTitle() const {
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;