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 CONTENT_RENDERER_SCHEDULER_BASE_TASK_TIME_TRACKER_H_ |
| 6 #define CONTENT_RENDERER_SCHEDULER_BASE_TASK_TIME_TRACKER_H_ |
| 7 |
| 8 #include <memory> |
| 9 #include <vector> |
| 10 |
| 11 #include "base/macros.h" |
| 12 #include "base/time/default_tick_clock.h" |
| 13 #include "base/time/time.h" |
| 14 #include "components/scheduler/base/queueing_time_estimator.h" |
| 15 #include "components/scheduler/scheduler_export.h" |
| 16 |
| 17 namespace base { |
| 18 class TickClock; |
| 19 } |
| 20 |
| 21 namespace scheduler { |
| 22 |
| 23 class SCHEDULER_EXPORT TaskTimeTracker : public QueueingTimeEstimator::Client { |
| 24 public: |
| 25 class TaskTimeObserver { |
| 26 public: |
| 27 virtual void OnQueueingTimeForWindowEstimated( |
| 28 base::TimeDelta queueing_time) = 0; |
| 29 virtual ~TaskTimeObserver() {} |
| 30 }; |
| 31 |
| 32 TaskTimeTracker(); |
| 33 ~TaskTimeTracker() override; |
| 34 |
| 35 void ReportTaskTime(base::TimeTicks startTime, base::TimeTicks endTime); |
| 36 void SetObserver(TaskTimeObserver*); |
| 37 |
| 38 protected: |
| 39 // QueueingTimeEstimator::Client implementation: |
| 40 void OnQueueingTimeForWindowEstimated(base::TimeDelta queueing_time) override; |
| 41 |
| 42 private: |
| 43 TaskTimeObserver* task_time_observer_; // Not Owned |
| 44 QueueingTimeEstimator queueing_time_estimator_; |
| 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(TaskTimeTracker); |
| 47 }; // scheduler |
| 48 |
| 49 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_TIME_TRACKER_H_ |
| 50 |
| 51 } |
OLD | NEW |