blob: 3664a384f67a3e95cbd36d96005619ec0c476647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SCHEDULER_RENDERER_IDLE_TIME_ESTIMATOR_H_
#define COMPONENTS_SCHEDULER_RENDERER_IDLE_TIME_ESTIMATOR_H_
#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "base/time/tick_clock.h"
#include "cc/base/rolling_time_delta_history.h"
#include "components/scheduler/base/task_queue.h"
#include "components/scheduler/scheduler_export.h"
namespace scheduler {
// Estimates how much idle time there is available. Ignores nested tasks.
class SCHEDULER_EXPORT IdleTimeEstimator
: public base::MessageLoop::TaskObserver {
public:
IdleTimeEstimator(const scoped_refptr<TaskQueue>& compositor_task_runner,
base::TickClock* time_source,
int sample_count,
double estimation_percentile);
~IdleTimeEstimator() override;
// Expected Idle time is defined as: |compositor_frame_interval| minus
// expected compositor task duration.
base::TimeDelta GetExpectedIdleDuration(
base::TimeDelta compositor_frame_interval) const;
void DidCommitFrameToCompositor();
void Clear();
// TaskObserver implementation:
void WillProcessTask(const base::PendingTask& pending_task) override;
void DidProcessTask(const base::PendingTask& pending_task) override;
private:
scoped_refptr<TaskQueue> compositor_task_runner_;
cc::RollingTimeDeltaHistory per_frame_compositor_task_runtime_;
base::TickClock* time_source_; // NOT OWNED
double estimation_percentile_;
base::TimeTicks task_start_time_;
base::TimeTicks prev_commit_time_;
base::TimeDelta cumulative_compositor_runtime_;
int nesting_level_;
bool did_commit_;
DISALLOW_COPY_AND_ASSIGN(IdleTimeEstimator);
};
} // namespace scheduler
#endif // COMPONENTS_SCHEDULER_RENDERER_IDLE_TIME_ESTIMATOR_H_
|