OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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. |
| 4 |
| 5 #ifndef CHROME_COMMON_CHROME_PROCESS_TYPE_H_ |
| 6 #define CHROME_COMMON_CHROME_PROCESS_TYPE_H_ |
| 7 |
| 8 #include "content/public/common/process_type.h" |
| 9 |
| 10 // Defines the different process types. |
| 11 // NOTE: Do not remove or reorder the elements in this enum, and only add new |
| 12 // items at the end, right before MAX_PROCESS. We depend on these specific |
| 13 // values in histograms. |
| 14 enum ChromeProcessType { |
| 15 PROCESS_TYPE_PROFILE_IMPORT = content::PROCESS_TYPE_CONTENT_END, |
| 16 PROCESS_TYPE_NACL_LOADER, |
| 17 PROCESS_TYPE_NACL_BROKER, |
| 18 }; |
| 19 |
| 20 #endif // CHROME_COMMON_CHROME_PROCESS_TYPE_H_ |
OLD | NEW |