Chromium Code Reviews| 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 |