Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Side by Side Diff: chrome/common/chrome_process_type.h

Issue 12662019: Split the ProcessType enum into process types that content knows about (which will remain in src\co… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698