| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/memory_coordinator/browser/memory_monitor.h" | |
| 6 | |
| 7 #include "base/process/process_metrics.h" | |
| 8 | |
| 9 namespace memory_coordinator { | |
| 10 | |
| 11 MemoryMonitorDelegate::~MemoryMonitorDelegate() {} | |
| 12 | |
| 13 void MemoryMonitorDelegate::GetSystemMemoryInfo( | |
| 14 base::SystemMemoryInfoKB* mem_info) { | |
| 15 base::GetSystemMemoryInfo(mem_info); | |
| 16 } | |
| 17 | |
| 18 } // namespace memory_coordinator | |
| OLD | NEW |