Update optimize_png_files.sh to work on msysgit bash.
[chromium-blink-merge.git] / content / common / process_type.cc
blobc4e293b0c7b0358a456db62196b5d08d74ee99ba
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/public/common/process_type.h"
7 #include "base/logging.h"
8 #include "content/public/common/content_client.h"
10 namespace content {
12 std::string GetProcessTypeNameInEnglish(int type) {
13 switch (type) {
14 case PROCESS_TYPE_BROWSER:
15 return "Browser";
16 case PROCESS_TYPE_RENDERER:
17 return "Tab";
18 case PROCESS_TYPE_PLUGIN:
19 return "Plug-in";
20 case PROCESS_TYPE_WORKER:
21 return "Web Worker";
22 case PROCESS_TYPE_UTILITY:
23 return "Utility";
24 case PROCESS_TYPE_ZYGOTE:
25 return "Zygote";
26 case PROCESS_TYPE_SANDBOX_HELPER:
27 return "Sandbox helper";
28 case PROCESS_TYPE_GPU:
29 return "GPU";
30 case PROCESS_TYPE_PPAPI_PLUGIN:
31 return "Pepper Plugin";
32 case PROCESS_TYPE_PPAPI_BROKER:
33 return "Pepper Plugin Broker";
34 case PROCESS_TYPE_UNKNOWN:
35 DCHECK(false) << "Unknown child process type!";
36 return "Unknown";
39 return content::GetContentClient()->GetProcessTypeNameInEnglish(type);
42 } // namespace content