| Index: content/public/common/process_type.h
|
| ===================================================================
|
| --- content/public/common/process_type.h (revision 112374)
|
| +++ content/public/common/process_type.h (working copy)
|
| @@ -6,6 +6,8 @@
|
| #define CONTENT_PUBLIC_COMMON_PROCESS_TYPE_H_
|
| #pragma once
|
|
|
| +#include <string>
|
| +
|
| namespace content {
|
|
|
| // Defines the different process types.
|
| @@ -30,6 +32,10 @@
|
| PROCESS_TYPE_MAX
|
| };
|
|
|
| +// Returns an English name of the process type, should only be used for non
|
| +// user-visible strings, or debugging pages like about:memory.
|
| +std::string GetProcessTypeNameInEnglish(ProcessType type);
|
| +
|
| } // namespace content
|
|
|
| #endif // CONTENT_PUBLIC_COMMON_PROCESS_TYPE_H_
|
|
|