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

Unified Diff: base/process_util_mac.mm

Issue 200094: Some scaffolding for the task manager. (Closed)
Patch Set: DAMN YOU GIT Created 11 years, 3 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 | « no previous file | chrome/app/nibs/MainMenu.xib » ('j') | chrome/browser/cocoa/task_manager_mac_unittest.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_mac.mm
diff --git a/base/process_util_mac.mm b/base/process_util_mac.mm
index da0b200e08665c4e79471254cf10dd4fde195bfb..183fe31ac774eeb703a69b30b62bafca2827dba1 100644
--- a/base/process_util_mac.mm
+++ b/base/process_util_mac.mm
@@ -199,6 +199,17 @@ size_t ProcessMetrics::GetPeakWorkingSetSize() const {
return 0;
}
+size_t ProcessMetrics::GetPrivateBytes() const {
+ return 0;
+}
+
+void ProcessMetrics::GetCommittedKBytes(CommittedKBytes* usage) const {
+}
+
+bool ProcessMetrics::GetWorkingSetKBytes(WorkingSetKBytes* ws_usage) const {
+ return false;
+}
+
// ------------------------------------------------------------------------
} // namespace base
« no previous file with comments | « no previous file | chrome/app/nibs/MainMenu.xib » ('j') | chrome/browser/cocoa/task_manager_mac_unittest.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698