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

Unified Diff: chrome/browser/task_management/providers/arc/arc_process_task_provider.cc

Issue 2023643002: Add ARC app icons to the Task Manager UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 4 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
Index: chrome/browser/task_management/providers/arc/arc_process_task_provider.cc
diff --git a/chrome/browser/task_management/providers/arc/arc_process_task_provider.cc b/chrome/browser/task_management/providers/arc/arc_process_task_provider.cc
index dff7a7b38730e30f4304c6b68ef2c41b523005e3..b2372afdbe76fbb510a853c7ea972f038cba5792 100644
--- a/chrome/browser/task_management/providers/arc/arc_process_task_provider.cc
+++ b/chrome/browser/task_management/providers/arc/arc_process_task_provider.cc
@@ -69,8 +69,8 @@ void ArcProcessTaskProvider::OnUpdateProcessList(
// (crbug.com/587707).
DCHECK(!task.get()) <<
"Task with the same pid should not be added twice.";
- task.reset(new ArcProcessTask(
- entry.pid, entry.nspid, entry.process_name, entry.process_state));
+ task.reset(new ArcProcessTask(entry.pid, entry.nspid, entry.process_name,
+ entry.process_state, entry.packages));
NotifyObserverTaskAdded(task.get());
} else {
// Update process state of existing process.

Powered by Google App Engine
This is Rietveld 408576698