diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-11 17:36:50 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-11 17:36:50 +0000 |
commit | 4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10 (patch) | |
tree | 588a0a6d8a51fc54a3951690cafb753ec6a75ae6 /chrome/browser/process_info_snapshot_mac.cc | |
parent | 53976e824cf83d5151b8415b1a0f5c67ec97f7aa (diff) | |
download | chromium_src-4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10.zip chromium_src-4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10.tar.gz chromium_src-4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10.tar.bz2 |
A large number of style nits in preparation for turning on automated cpplint.py.
Review URL: http://codereview.chromium.org/385023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31669 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_info_snapshot_mac.cc')
-rw-r--r-- | chrome/browser/process_info_snapshot_mac.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/process_info_snapshot_mac.cc b/chrome/browser/process_info_snapshot_mac.cc index c594e75..7e8117b 100644 --- a/chrome/browser/process_info_snapshot_mac.cc +++ b/chrome/browser/process_info_snapshot_mac.cc @@ -34,7 +34,7 @@ bool ProcessInfoSnapshot::Sample(std::vector<base::ProcessId> pid_list) { argv.push_back("-o"); argv.push_back("pid=,ppid=,ruid=,uid=,rss=,vsz=,comm="); // Only display the specified PIDs. - for(std::vector<base::ProcessId>::iterator it = pid_list.begin(); + for (std::vector<base::ProcessId>::iterator it = pid_list.begin(); it != pid_list.end(); ++it) { argv.push_back("-p"); argv.push_back(Int64ToString(static_cast<int64>(*it))); |