OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/public/cpp/app_launch_id.h" | 5 #include "ash/public/cpp/app_launch_id.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 | 10 |
11 AppLaunchId::AppLaunchId(const std::string& app_id, | 11 AppLaunchId::AppLaunchId(const std::string& app_id, |
12 const std::string& launch_id) | 12 const std::string& launch_id) |
13 : app_id_(app_id), launch_id_(launch_id) { | 13 : app_id(app_id), launch_id(launch_id) { |
14 DCHECK(!app_id.empty()); | 14 DCHECK(launch_id.empty() || !app_id.empty()) << "launch ids require app ids."; |
15 } | 15 } |
16 | 16 |
17 AppLaunchId::AppLaunchId(const std::string& app_id) : app_id_(app_id) { | 17 AppLaunchId::AppLaunchId(const std::string& app_id) : app_id(app_id) {} |
18 DCHECK(!app_id.empty()); | 18 |
| 19 AppLaunchId::AppLaunchId() = default; |
| 20 |
| 21 AppLaunchId::~AppLaunchId() = default; |
| 22 |
| 23 AppLaunchId::AppLaunchId(const AppLaunchId& other) = default; |
| 24 |
| 25 AppLaunchId::AppLaunchId(AppLaunchId&& other) = default; |
| 26 |
| 27 AppLaunchId& AppLaunchId::operator=(const AppLaunchId& other) = default; |
| 28 |
| 29 bool AppLaunchId::operator==(const AppLaunchId& other) const { |
| 30 return app_id == other.app_id && launch_id == other.launch_id; |
19 } | 31 } |
20 | 32 |
21 AppLaunchId::AppLaunchId() {} | 33 bool AppLaunchId::operator!=(const AppLaunchId& other) const { |
| 34 return !(*this == other); |
| 35 } |
22 | 36 |
23 AppLaunchId::~AppLaunchId() {} | 37 bool AppLaunchId::operator<(const AppLaunchId& other) const { |
| 38 return app_id < other.app_id || |
| 39 (app_id == other.app_id && launch_id < other.launch_id); |
| 40 } |
| 41 |
| 42 bool AppLaunchId::IsNull() const { |
| 43 return app_id.empty() && launch_id.empty(); |
| 44 } |
24 | 45 |
25 } // namespace ash | 46 } // namespace ash |
OLD | NEW |