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

Unified Diff: chrome/browser/memory/tab_manager_delegate_chromeos.cc

Issue 2025593003: Show all system process in the task_manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move two functions to anonymous namespace. Created 4 years, 5 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
Index: chrome/browser/memory/tab_manager_delegate_chromeos.cc
diff --git a/chrome/browser/memory/tab_manager_delegate_chromeos.cc b/chrome/browser/memory/tab_manager_delegate_chromeos.cc
index 5ffbd0b6d4f490d7f156a4f2726f80c3e3adbe2d..e3d8d5c7add97005121837b81fb493b2b504079e 100644
--- a/chrome/browser/memory/tab_manager_delegate_chromeos.cc
+++ b/chrome/browser/memory/tab_manager_delegate_chromeos.cc
@@ -446,7 +446,7 @@ void TabManagerDelegate::LowMemoryKill(
const TabStatsList& tab_list) {
arc::ArcProcessService* arc_process_service = arc::ArcProcessService::Get();
if (arc_process_service &&
- arc_process_service->RequestProcessList(
+ arc_process_service->RequestAppProcessList(
base::Bind(&TabManagerDelegate::LowMemoryKillImpl,
weak_ptr_factory_.GetWeakPtr(), tab_list))) {
// LowMemoryKillImpl will be called asynchronously so nothing left to do.
@@ -587,7 +587,7 @@ void TabManagerDelegate::AdjustOomPriorities(const TabStatsList& tab_list) {
if (IsArcMemoryManagementEnabled()) {
arc::ArcProcessService* arc_process_service = arc::ArcProcessService::Get();
if (arc_process_service &&
- arc_process_service->RequestProcessList(
+ arc_process_service->RequestAppProcessList(
base::Bind(&TabManagerDelegate::AdjustOomPrioritiesImpl,
weak_ptr_factory_.GetWeakPtr(), tab_list))) {
return;

Powered by Google App Engine
This is Rietveld 408576698