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

Side by Side Diff: services/resource_coordinator/coordination_unit/process_coordination_unit_impl.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
(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
5 #ifndef SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_PROCESS_COORDINATION_UNI T_IMPL_H_
6 #define SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_PROCESS_COORDINATION_UNI T_IMPL_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "base/process/process_metrics.h"
12 #include "base/timer/timer.h"
13 #include "services/resource_coordinator/coordination_unit/coordination_unit_impl .h"
14
15 namespace service_manager {
16 class ServiceContextRef;
17 }
18
19 namespace resource_coordinator {
20
21 struct CoordinationUnitID;
22
23 class ProcessCoordinationUnitImpl : public CoordinationUnitImpl {
24 public:
25 ProcessCoordinationUnitImpl(
26 const CoordinationUnitID& id,
27 std::unique_ptr<service_manager::ServiceContextRef> service_ref);
28 ~ProcessCoordinationUnitImpl() override;
29 void MeasureProcessCPUUsage();
30 double GetCPUUsageForTesting() override;
31
32 private:
33 std::unique_ptr<base::ProcessMetrics> process_metrics_;
34 base::OneShotTimer repeating_timer_;
35 double cpu_usage_;
36
37 DISALLOW_COPY_AND_ASSIGN(ProcessCoordinationUnitImpl);
38 };
39
40 } // namespace resource_coordinator
41
42 #endif // SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_PROCESS_COORDINATION_ UNIT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698