diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-22 05:16:13 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-22 05:16:13 +0000 |
commit | f3b3576935e25d8d4e6c244740a06a36b9dc9f8e (patch) | |
tree | a5e44168dc6631d47c58e1b9c6008e236581bcbe /content/browser/tcmalloc_internals_request_job.cc | |
parent | 0c472954a32a68e6d6cc7be6eb53b6b9e99b66d6 (diff) | |
download | chromium_src-f3b3576935e25d8d4e6c244740a06a36b9dc9f8e.zip chromium_src-f3b3576935e25d8d4e6c244740a06a36b9dc9f8e.tar.gz chromium_src-f3b3576935e25d8d4e6c244740a06a36b9dc9f8e.tar.bz2 |
Split the ProcessType enum into process types that content knows about (which will remain in src\content) and those that are for chrome (which moved to src\chrome). This way we won't get any more layering violations where nacl code is in content.
Also move the NaCl command line switches to chrome.
BUG=191682
Review URL: https://codereview.chromium.org/12662019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tcmalloc_internals_request_job.cc')
-rw-r--r-- | content/browser/tcmalloc_internals_request_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/tcmalloc_internals_request_job.cc b/content/browser/tcmalloc_internals_request_job.cc index 87975b4..b155b2f 100644 --- a/content/browser/tcmalloc_internals_request_job.cc +++ b/content/browser/tcmalloc_internals_request_job.cc @@ -24,7 +24,7 @@ AboutTcmallocOutputs::AboutTcmallocOutputs() {} AboutTcmallocOutputs::~AboutTcmallocOutputs() {} void AboutTcmallocOutputs::OnStatsForChildProcess( - base::ProcessId pid, ProcessType process_type, + base::ProcessId pid, int process_type, const std::string& output) { std::string header = GetProcessTypeNameInEnglish(process_type); base::StringAppendF(&header, " PID %d", static_cast<int>(pid)); |