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

Unified Diff: chrome/browser/chromeos/arc/arc_process.h

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/chromeos/arc/arc_process.h
diff --git a/chrome/browser/chromeos/arc/arc_process.h b/chrome/browser/chromeos/arc/arc_process.h
index 253f42b04fa2ceb600228f1ab989df189b66bbf8..24a0033a685c696274cdfbadd01aba318ef3ce98 100644
--- a/chrome/browser/chromeos/arc/arc_process.h
+++ b/chrome/browser/chromeos/arc/arc_process.h
@@ -1,10 +1,12 @@
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+
#ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_PROCESS_H_
#define CHROME_BROWSER_CHROMEOS_ARC_ARC_PROCESS_H_
#include <string>
+#include <vector>
#include "base/process/process_handle.h"
#include "components/arc/common/process.mojom.h"
@@ -12,10 +14,18 @@
namespace arc {
struct ArcProcess {
Luis Héctor Chávez 2016/05/31 22:10:53 As discussed offline, this looks like it needs to
Yusuke Sato 2016/05/31 23:11:52 Done. Changed to class and added DISALLOW_COPY_AND
+ ArcProcess(base::ProcessId nspid,
+ base::ProcessId pid,
+ const std::string& process_name,
+ mojom::ProcessState process_state);
+ ~ArcProcess();
+ ArcProcess(const ArcProcess& rhs);
+
base::ProcessId nspid;
base::ProcessId pid;
std::string process_name;
mojom::ProcessState process_state;
+ std::vector<std::string> packages;
};
} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698