Chromium Code Reviews| Index: chrome/common/child_process_info.h |
| =================================================================== |
| --- chrome/common/child_process_info.h (revision 33701) |
| +++ chrome/common/child_process_info.h (working copy) |
| @@ -12,7 +12,10 @@ |
| // Holds information about a child process. |
| class ChildProcessInfo { |
| public: |
| + // NOTE: Do not remove or reorder the elements in this enum, and only add new |
| + // items at the end. We depend on these specific values in a histogram. |
| enum ProcessType { |
| + UNKNOWN_PROCESS = 1, |
|
jar (doing other things)
2009/12/18 16:28:14
This change appears to re-number all entries in th
asargent_no_longer_on_chrome
2010/01/05 01:01:19
Their ordinal values were never used before as far
|
| BROWSER_PROCESS, |
| RENDER_PROCESS, |
| PLUGIN_PROCESS, |
| @@ -21,8 +24,7 @@ |
| UTILITY_PROCESS, |
| PROFILE_IMPORT_PROCESS, |
| ZYGOTE_PROCESS, |
| - SANDBOX_HELPER_PROCESS, |
| - UNKNOWN_PROCESS, |
| + SANDBOX_HELPER_PROCESS |
| }; |
| ChildProcessInfo(const ChildProcessInfo& original); |