From bd5d6cfd0e09e2123b948083bdaa39b2637b5143 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Thu, 1 Dec 2011 00:39:12 +0000 Subject: Move the ProcessType enum out to its own file. This is in preparation for getting rid of ChildProcessInfo. BUG=98716 Review URL: http://codereview.chromium.org/8760011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112353 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/memory_details.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/browser/memory_details.h') diff --git a/chrome/browser/memory_details.h b/chrome/browser/memory_details.h index da62580..568f591 100644 --- a/chrome/browser/memory_details.h +++ b/chrome/browser/memory_details.h @@ -11,7 +11,7 @@ #include "base/memory/ref_counted.h" #include "base/process_util.h" #include "base/string16.h" -#include "content/common/child_process_info.h" +#include "content/public/common/process_type.h" // We collect data about each browser process. A browser may // have multiple processes (of course!). Even IE has multiple @@ -32,7 +32,7 @@ struct ProcessMemoryInformation { static std::string GetRendererTypeNameInEnglish(RendererProcessType type); static std::string GetFullTypeNameInEnglish( - ChildProcessInfo::ProcessType type, + content::ProcessType type, RendererProcessType rtype); ProcessMemoryInformation(); @@ -55,7 +55,7 @@ struct ProcessMemoryInformation { // results. bool is_diagnostics; // If this is a child process of Chrome, what type (i.e. plugin) it is. - ChildProcessInfo::ProcessType type; + content::ProcessType type; // If this is a renderer process, what type it is. RendererProcessType renderer_type; // A collection of titles used, i.e. for a tab it'll show all the page titles. -- cgit v1.1