diff options
author | rlp@chromium.org <rlp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-14 21:23:43 +0000 |
---|---|---|
committer | rlp@chromium.org <rlp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-14 21:23:43 +0000 |
commit | 6c112aedc0ed488c7e00884972fcf21843a8e398 (patch) | |
tree | 828480234bbedbb781f09bd580d83cb4b2d9d5be /chrome/common | |
parent | 30b3588799234cbd615cd9a3e4149ab855eb7378 (diff) | |
download | chromium_src-6c112aedc0ed488c7e00884972fcf21843a8e398.zip chromium_src-6c112aedc0ed488c7e00884972fcf21843a8e398.tar.gz chromium_src-6c112aedc0ed488c7e00884972fcf21843a8e398.tar.bz2 |
Adding "name in english" for GPU type process.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2118008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49729 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/child_process_info.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/child_process_info.cc b/chrome/common/child_process_info.cc index eb69db3..dffa7e3 100644 --- a/chrome/common/child_process_info.cc +++ b/chrome/common/child_process_info.cc @@ -59,6 +59,8 @@ std::wstring ChildProcessInfo::GetTypeNameInEnglish( return L"Native Client module"; case NACL_BROKER_PROCESS: return L"Native Client broker"; + case GPU_PROCESS: + return L"GPU"; case UNKNOWN_PROCESS: default: DCHECK(false) << "Unknown child process type!"; |