diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 00:39:12 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 00:39:12 +0000 |
commit | bd5d6cfd0e09e2123b948083bdaa39b2637b5143 (patch) | |
tree | 33cf977ea21078b69d7600ec4a12412fa23dc342 /content/browser/utility_process_host.cc | |
parent | 8d85a4b93067def07388e577b5c9e95de27f06b6 (diff) | |
download | chromium_src-bd5d6cfd0e09e2123b948083bdaa39b2637b5143.zip chromium_src-bd5d6cfd0e09e2123b948083bdaa39b2637b5143.tar.gz chromium_src-bd5d6cfd0e09e2123b948083bdaa39b2637b5143.tar.bz2 |
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
Diffstat (limited to 'content/browser/utility_process_host.cc')
-rw-r--r-- | content/browser/utility_process_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/utility_process_host.cc b/content/browser/utility_process_host.cc index f2173ca..65a7e70 100644 --- a/content/browser/utility_process_host.cc +++ b/content/browser/utility_process_host.cc @@ -34,7 +34,7 @@ bool UtilityProcessHost::Client::OnMessageReceived( UtilityProcessHost::UtilityProcessHost(Client* client, BrowserThread::ID client_thread_id) - : BrowserChildProcessHost(UTILITY_PROCESS), + : BrowserChildProcessHost(content::PROCESS_TYPE_UTILITY), client_(client), client_thread_id_(client_thread_id), is_batch_mode_(false), |