diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-08 15:52:45 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-08 15:52:45 +0000 |
commit | a5a00b1dd7a4950de617bb9bb9bc596d1f89965f (patch) | |
tree | bfa6a819deb40647392a5b4db31d26e428eb0e37 /chrome/browser/memory_details_mac.cc | |
parent | 152c76a49742732b72d061032979d5b27ca2af28 (diff) | |
download | chromium_src-a5a00b1dd7a4950de617bb9bb9bc596d1f89965f.zip chromium_src-a5a00b1dd7a4950de617bb9bb9bc596d1f89965f.tar.gz chromium_src-a5a00b1dd7a4950de617bb9bb9bc596d1f89965f.tar.bz2 |
Move ProcessEntry and IoCounters inside namespace base.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/1599007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/memory_details_mac.cc')
-rw-r--r-- | chrome/browser/memory_details_mac.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/memory_details_mac.cc b/chrome/browser/memory_details_mac.cc index fda205e..2b334e4 100644 --- a/chrome/browser/memory_details_mac.cc +++ b/chrome/browser/memory_details_mac.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -104,9 +104,9 @@ void MemoryDetails::CollectProcessData( base::NamedProcessIterator process_it(process_data_[index].process_name, NULL); - while (const ProcessEntry* process_entry = process_it.NextProcessEntry()) { - pids_by_browser[index].push_back(process_entry->pid); - all_pids.push_back(process_entry->pid); + while (const base::ProcessEntry* entry = process_it.NextProcessEntry()) { + pids_by_browser[index].push_back(entry->pid); + all_pids.push_back(entry->pid); } } @@ -115,9 +115,9 @@ void MemoryDetails::CollectProcessData( { base::NamedProcessIterator helper_it(chrome::kHelperProcessExecutableName, NULL); - while (const ProcessEntry* process_entry = helper_it.NextProcessEntry()) { - helper_pids.push_back(process_entry->pid); - all_pids.push_back(process_entry->pid); + while (const base::ProcessEntry* entry = helper_it.NextProcessEntry()) { + helper_pids.push_back(entry->pid); + all_pids.push_back(entry->pid); } } |