Chromium Code Reviews| 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 "cc/base/rolling_time_delta_history.h" | |
| 12 #include "components/scheduler/scheduler_export.h" | |
| 13 | |
| 14 namespace base { | |
| 15 class TickClock; | |
| 16 } | |
| 17 | |
| 18 namespace scheduler { | |
| 19 | |
| 20 // Records the expected queueing time for a high priority task occurring | |
| 21 // randomly during each interval of length |window_duration|. | |
| 22 class SCHEDULER_EXPORT QueueingTimeEstimator | |
| 23 : public base::MessageLoop::TaskObserver { | |
| 24 public: | |
| 25 class Client { | |
| 26 public: | |
| 27 virtual void OnQueueingTimeForWindowEstimated( | |
| 28 base::TimeDelta queueing_time) = 0; | |
| 29 virtual ~Client(){}; | |
|
Sami
2016/04/21 10:04:01
nit: Remove the trailing ';' so git cl format will
tdresser
2016/04/21 12:37:28
Done.
| |
| 30 }; | |
| 31 | |
| 32 QueueingTimeEstimator(Client* client, | |
| 33 base::TickClock* time_source, | |
| 34 base::TimeDelta window_duration); | |
| 35 ~QueueingTimeEstimator() override; | |
| 36 | |
| 37 // TaskObserver implementation: | |
| 38 void WillProcessTask(const base::PendingTask& pending_task) override; | |
| 39 void DidProcessTask(const base::PendingTask& pending_task) override; | |
| 40 | |
| 41 private: | |
| 42 Client* client_; // NOT OWNED. | |
| 43 base::TickClock* time_source_; // NOT OWNED. | |
| 44 int outstanding_task_count_; | |
| 45 | |
| 46 base::TimeTicks task_start_time_; | |
| 47 base::TimeDelta current_expected_queueing_time_; | |
| 48 base::TimeDelta window_duration_; | |
| 49 base::TimeTicks window_start_time_; | |
| 50 | |
| 51 DISALLOW_COPY_AND_ASSIGN(QueueingTimeEstimator); | |
| 52 }; | |
| 53 | |
| 54 } // namespace scheduler | |
| 55 | |
| 56 #endif // COMPONENTS_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_ | |
| OLD | NEW |