| Index: chrome/browser/memory_details_mac.cc
|
| diff --git a/chrome/browser/memory_details_mac.cc b/chrome/browser/memory_details_mac.cc
|
| index dd1116b595509304057ae719bff2cff818dd502c..bf581931a7e54009647893660cbaecb50033b633 100644
|
| --- a/chrome/browser/memory_details_mac.cc
|
| +++ b/chrome/browser/memory_details_mac.cc
|
| @@ -106,8 +106,8 @@ void MemoryDetails::CollectProcessData(
|
| NULL);
|
|
|
| while (const base::ProcessEntry* entry = process_it.NextProcessEntry()) {
|
| - pids_by_browser[index].push_back(entry->pid);
|
| - all_pids.push_back(entry->pid);
|
| + pids_by_browser[index].push_back(entry->pid());
|
| + all_pids.push_back(entry->pid());
|
| }
|
| }
|
|
|
| @@ -117,8 +117,8 @@ void MemoryDetails::CollectProcessData(
|
| base::NamedProcessIterator helper_it(chrome::kHelperProcessExecutableName,
|
| NULL);
|
| while (const base::ProcessEntry* entry = helper_it.NextProcessEntry()) {
|
| - helper_pids.push_back(entry->pid);
|
| - all_pids.push_back(entry->pid);
|
| + helper_pids.push_back(entry->pid());
|
| + all_pids.push_back(entry->pid());
|
| }
|
| }
|
|
|
|
|