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

Unified 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698