| 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 |
| 20 ArcProcess::ArcProcess(ArcProcess&& other) = default; |
| 21 ArcProcess& ArcProcess::operator=(ArcProcess&& other) = default; |
| 22 |
| 23 } // namespace arc |
| OLD | NEW |