Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5624)

Unified Diff: chrome/browser/memory_details_mac.cc

Issue 1689012: Move common code into process_util.cc (Closed)
Patch Set: More fixes Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/shared_memory.h ('k') | chrome/browser/memory_details_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
}
« no previous file with comments | « base/shared_memory.h ('k') | chrome/browser/memory_details_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698