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

Unified Diff: base/process_util_mac.mm

Issue 113217: Add memory stats for linux page cycler. On linux, we collect (Closed)
Patch Set: close process Created 11 years, 7 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/process_util_linux.cc ('k') | base/process_util_win.cc » ('j') | no next file with comments »
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 bcdaffe9bc23369a823c675be4c7860bd1512794..de59896d9f63b401d59c3f04777a114950dfcd32 100644
--- a/base/process_util_mac.mm
+++ b/base/process_util_mac.mm
@@ -233,4 +233,24 @@ bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const {
return false;
}
+size_t ProcessMetrics::GetPagefileUsage() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+size_t ProcessMetrics::GetPeakPagefileUsage() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+size_t ProcessMetrics::GetWorkingSetSize() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+size_t ProcessMetrics::GetPeakWorkingSetSize() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
} // namespace base
« no previous file with comments | « base/process_util_linux.cc ('k') | base/process_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698