Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: services/resource_coordinator/public/cpp/coordination_unit_id.h

Issue 2892443002: [GRC] Process Coordination Unit support for Global Resource Controller (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_ 4 #ifndef SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_
5 #define SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_ 5 #define SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "services/resource_coordinator/public/cpp/coordination_unit_types.h" 9 #include "services/resource_coordinator/public/cpp/coordination_unit_types.h"
10 #include "services/resource_coordinator/public/cpp/resource_coordinator_export.h " 10 #include "services/resource_coordinator/public/cpp/resource_coordinator_export.h "
11 11
12 namespace resource_coordinator { 12 namespace resource_coordinator {
13 13
14 // This is a native struct rather than a mojom struct as we eventually want 14 // This is a native struct rather than a mojom struct as we eventually want
15 // to annotate base::TaskRunner with CUs for cost attribution purses and 15 // to annotate base::TaskRunner with CUs for cost attribution purses and
16 // would like to move it to base/ as easily as possible at that point. 16 // would like to move it to base/ as easily as possible at that point.
17 // TODO(oysteine): Rename to CoordinationUnitGUID to better differentiate the
18 // class from the internal id
17 struct SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_EXPORT CoordinationUnitID { 19 struct SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_EXPORT CoordinationUnitID {
20 typedef uint64_t CoordinationUnitTypeId;
21
18 CoordinationUnitID(); 22 CoordinationUnitID();
19 CoordinationUnitID(const CoordinationUnitType& type, 23 CoordinationUnitID(const CoordinationUnitType& type,
20 const std::string& new_id); 24 const std::string& new_id);
25 CoordinationUnitID(const CoordinationUnitType& type,
26 CoordinationUnitTypeId new_id);
21 27
22 bool operator==(const CoordinationUnitID& b) const { 28 bool operator==(const CoordinationUnitID& b) const {
23 return id == b.id && type == b.type; 29 return id == b.id && type == b.type;
24 } 30 }
25 31
26 int64_t id; 32 CoordinationUnitTypeId id;
27 CoordinationUnitType type; 33 CoordinationUnitType type;
28 }; 34 };
29 35
30 } // resource_coordinator 36 } // resource_coordinator
31 37
32 namespace std { 38 namespace std {
33 39
34 template <> 40 template <>
35 struct hash<resource_coordinator::CoordinationUnitID> { 41 struct hash<resource_coordinator::CoordinationUnitID> {
36 uint64_t operator()( 42 uint64_t operator()(
37 const resource_coordinator::CoordinationUnitID& id) const { 43 const resource_coordinator::CoordinationUnitID& id) const {
38 return ((static_cast<uint64_t>(id.type)) << 32) | id.id; 44 return ((static_cast<uint64_t>(id.type)) << 32) |
45 static_cast<uint64_t>(id.id);
39 } 46 }
40 }; 47 };
41 48
42 } // namespace std 49 } // namespace std
43 50
44 #endif // SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_ 51 #endif // SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_ID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698