| 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 #include <utility> | |
| 8 | |
| 9 namespace arc { | |
| 10 | |
| 11 ArcProcess::ArcProcess(base::ProcessId nspid, | |
| 12 base::ProcessId pid, | |
| 13 const std::string& process_name, | |
| 14 mojom::ProcessState process_state, | |
| 15 bool is_focused, | |
| 16 int64_t last_activity_time) | |
| 17 : nspid_(nspid), | |
| 18 pid_(pid), | |
| 19 process_name_(process_name), | |
| 20 process_state_(process_state), | |
| 21 is_focused_(is_focused), | |
| 22 last_activity_time_(last_activity_time) {} | |
| 23 | |
| 24 ArcProcess::~ArcProcess() = default; | |
| 25 | |
| 26 // Sort by (process_state, last_activity_time) pair. | |
| 27 // Smaller process_state value means higher priority as defined in Android. | |
| 28 // Larger last_activity_time means more recently used. | |
| 29 bool ArcProcess::operator<(const ArcProcess& rhs) const { | |
| 30 return std::make_pair(process_state(), -last_activity_time()) < | |
| 31 std::make_pair(rhs.process_state(), -rhs.last_activity_time()); | |
| 32 } | |
| 33 | |
| 34 ArcProcess::ArcProcess(ArcProcess&& other) = default; | |
| 35 ArcProcess& ArcProcess::operator=(ArcProcess&& other) = default; | |
| 36 | |
| 37 } // namespace arc | |
| OLD | NEW |