Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 #ifndef SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_ | |
| 5 #define SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_ | |
| 6 | |
| 7 #include <string> | |
| 8 | |
| 9 #include "services/resource_coordinator/public/cpp/coordination_unit_types.h" | |
| 10 | |
| 11 namespace resource_coordinator { | |
| 12 | |
| 13 struct CoordinationUnitID { | |
| 14 CoordinationUnitID(); | |
| 15 CoordinationUnitID(const CoordinationUnitType& type, const std::string& id); | |
| 16 | |
| 17 bool operator==(const CoordinationUnitID& b) const { | |
| 18 return id == b.id && type == b.type; | |
| 19 } | |
| 20 | |
| 21 int32_t id; | |
| 22 CoordinationUnitType type; | |
|
nasko
2017/04/21 00:17:32
This is in different order than CoordinationUnitID
| |
| 23 }; | |
| 24 | |
| 25 } // resource_coordinator | |
| 26 | |
| 27 namespace std { | |
| 28 | |
| 29 template <> | |
| 30 struct hash<resource_coordinator::CoordinationUnitID> { | |
| 31 uint64_t operator()( | |
| 32 const resource_coordinator::CoordinationUnitID& id) const { | |
| 33 return ((static_cast<uint64_t>(id.type)) << 32) | id.id; | |
| 34 } | |
| 35 }; | |
| 36 | |
| 37 } // namespace std | |
| 38 | |
| 39 #endif // SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_ | |
| OLD | NEW |