Chromium Code Reviews| Index: chrome/common/chrome_process_type.h |
| =================================================================== |
| --- chrome/common/chrome_process_type.h (revision 0) |
| +++ chrome/common/chrome_process_type.h (revision 0) |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_COMMON_CHROME_PROCESS_TYPE_H_ |
| +#define CHROME_COMMON_CHROME_PROCESS_TYPE_H_ |
| + |
| +#include "content/public/common/process_type.h" |
| + |
| +// Defines the different process types. |
| +// NOTE: Do not remove or reorder the elements in this enum, and only add new |
| +// items at the end, right before MAX_PROCESS. We depend on these specific |
|
scottmg
2013/03/22 02:56:35
nit; comment's out of date (PROCESS_TYPE_MAX in pr
jam
2013/03/22 04:58:37
ah, fixed comment
|
| +// values in histograms. |
| +enum ChromeProcessType { |
| + PROCESS_TYPE_PROFILE_IMPORT = content::PROCESS_TYPE_CONTENT_END, |
| + PROCESS_TYPE_NACL_LOADER, |
| + PROCESS_TYPE_NACL_BROKER, |
| +}; |
| + |
| +#endif // CHROME_COMMON_CHROME_PROCESS_TYPE_H_ |
| Property changes on: chrome\common\chrome_process_type.h |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |