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 #ifndef COMPONENTS_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_ | |
6 #define COMPONENTS_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "base/message_loop/message_loop.h" | |
10 #include "base/time/time.h" | |
11 #include "components/scheduler/scheduler_export.h" | |
12 | |
13 namespace base { | |
14 class TickClock; | |
15 } | |
16 | |
17 namespace scheduler { | |
18 | |
19 // Records the expected queueing time for a high priority task occurring | |
20 // randomly during each interval of length |window_duration|. | |
21 class SCHEDULER_EXPORT QueueingTimeEstimator { | |
22 public: | |
23 class SCHEDULER_EXPORT Client { | |
24 public: | |
25 virtual void OnQueueingTimeForWindowEstimated( | |
26 base::TimeDelta queueing_time) = 0; | |
27 virtual ~Client() {} | |
28 }; | |
alex clarke (OOO till 29th)
2016/07/06 13:51:32
nit: DISALLOW_COPY_AND_ASSIGN(Client);
tdresser
2016/07/06 14:26:50
Done.
| |
29 | |
30 QueueingTimeEstimator(Client* client, | |
31 base::TimeDelta window_duration); | |
32 | |
33 void OnToplevelTaskCompleted(base::TimeTicks task_start_time, | |
34 base::TimeTicks task_end_time); | |
35 | |
36 private: | |
37 bool TimePastWindowEnd(base::TimeTicks task_end_time); | |
38 Client* client_; // NOT OWNED. | |
39 | |
40 base::TimeDelta current_expected_queueing_time_; | |
41 base::TimeDelta window_duration_; | |
42 base::TimeTicks window_start_time_; | |
43 | |
44 DISALLOW_COPY_AND_ASSIGN(QueueingTimeEstimator); | |
45 }; | |
46 | |
47 } // namespace scheduler | |
48 | |
49 #endif // COMPONENTS_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_ | |
OLD | NEW |