| OLD | NEW |
| (Empty) | |
| 1 // Copyright 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 "chrome/browser/chromeos/arc/arc_process.h" |
| 6 |
| 7 namespace arc { |
| 8 |
| 9 ArcProcess::ArcProcess(base::ProcessId nspid, |
| 10 base::ProcessId pid, |
| 11 const std::string& process_name, |
| 12 mojom::ProcessState process_state) |
| 13 : nspid(nspid), |
| 14 pid(pid), |
| 15 process_name(process_name), |
| 16 process_state(process_state) {} |
| 17 |
| 18 ArcProcess::~ArcProcess() = default; |
| 19 ArcProcess::ArcProcess(const ArcProcess& rhs) = default; |
| 20 |
| 21 } // namespace arc |
| OLD | NEW |