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"
12 std::string
GetProcessTypeNameInEnglish(int type
) {
14 case PROCESS_TYPE_BROWSER
:
16 case PROCESS_TYPE_RENDERER
:
18 case PROCESS_TYPE_PLUGIN
:
20 case PROCESS_TYPE_UTILITY
:
22 case PROCESS_TYPE_ZYGOTE
:
24 case PROCESS_TYPE_SANDBOX_HELPER
:
25 return "Sandbox helper";
26 case PROCESS_TYPE_GPU
:
28 case PROCESS_TYPE_PPAPI_PLUGIN
:
29 return "Pepper Plugin";
30 case PROCESS_TYPE_PPAPI_BROKER
:
31 return "Pepper Plugin Broker";
32 case PROCESS_TYPE_UNKNOWN
:
33 DCHECK(false) << "Unknown child process type!";
37 return content::GetContentClient()->GetProcessTypeNameInEnglish(type
);
40 } // namespace content