| Index: chrome/browser/ui/webui/about_ui.cc
|
| diff --git a/chrome/browser/ui/webui/about_ui.cc b/chrome/browser/ui/webui/about_ui.cc
|
| index 707b769f24754f5d230f911f11777e942bb86c03..e2389f1f92f5ff01ef5472d60f684bc024bdb4fa 100644
|
| --- a/chrome/browser/ui/webui/about_ui.cc
|
| +++ b/chrome/browser/ui/webui/about_ui.cc
|
| @@ -30,7 +30,6 @@
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| -#include "base/sys_info.h"
|
| #include "base/task_scheduler/post_task.h"
|
| #include "base/threading/thread.h"
|
| #include "base/values.h"
|
| @@ -553,9 +552,7 @@
|
| output.append(AddStringRow(
|
| "Total", base::IntToString(meminfo.total / 1024)));
|
| output.append(AddStringRow(
|
| - "Free",
|
| - base::IntToString(base::SysInfo::AmountOfAvailablePhysicalMemory() /
|
| - 1024 / 1024)));
|
| + "Free", base::IntToString(meminfo.free / 1024)));
|
| #if defined(OS_CHROMEOS)
|
| int mem_allocated_kb = meminfo.active_anon + meminfo.inactive_anon;
|
| #if defined(ARCH_CPU_ARM_FAMILY)
|
|
|