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

Unified Diff: base/process/process_metrics_mac.cc

Issue 2838703003: Stop emitting physical footprint on macOS 10.11. (Closed)
Patch Set: Created 3 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 | « no previous file | chrome/browser/metrics/metrics_memory_details.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process/process_metrics_mac.cc
diff --git a/base/process/process_metrics_mac.cc b/base/process/process_metrics_mac.cc
index e73ae055a0418180b13e893c4932b07948aca963..5eda0d0c7aa869051bae9ae6c4496dc48722bfce 100644
--- a/base/process/process_metrics_mac.cc
+++ b/base/process/process_metrics_mac.cc
@@ -288,7 +288,7 @@ bool ProcessMetrics::GetCommittedAndWorkingSetKBytes(
}
size_t ProcessMetrics::GetPhysicalFootprint() const {
- if (mac::IsAtMostOS10_10())
+ if (mac::IsAtMostOS10_11())
return 0;
ChromeTaskVMInfo task_vm_info;
« no previous file with comments | « no previous file | chrome/browser/metrics/metrics_memory_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698