Introducing the Utility process, which handles the unpacking and verification
of extension packages.

This is a first pass.  In the second pass, I will add support for transcoding
the manifest and any images in the browser process.

BUG=11680
Review URL: http://codereview.chromium.org/114027

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16198 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/common/child_process_info.cc b/chrome/common/child_process_info.cc
index bd4c070..15b0179 100644
--- a/chrome/common/child_process_info.cc
+++ b/chrome/common/child_process_info.cc
@@ -24,6 +24,8 @@
       return L"Plug-in";
     case WORKER_PROCESS:
       return L"Web Worker";
+    case UTILITY_PROCESS:
+      return L"Utility";
     case UNKNOWN_PROCESS:
       default:
       DCHECK(false) << "Unknown child process type!";