| Index: components/scheduler/renderer/throttling_helper.h
|
| diff --git a/components/scheduler/renderer/throttling_helper.h b/components/scheduler/renderer/throttling_helper.h
|
| index 8c67338f3cb20489a4d70c4783b8a298773a8256..69a47762ebbd846f9ff80066d81c3627aaa63190 100644
|
| --- a/components/scheduler/renderer/throttling_helper.h
|
| +++ b/components/scheduler/renderer/throttling_helper.h
|
| @@ -16,7 +16,7 @@
|
| namespace scheduler {
|
|
|
| class RendererSchedulerImpl;
|
| -class ThrottledTimeDomain;
|
| +class VirtualTimeDomain;
|
| class WebFrameSchedulerImpl;
|
|
|
| class SCHEDULER_EXPORT ThrottlingHelper : public TimeDomain::Observer {
|
| @@ -33,7 +33,7 @@
|
| void Throttle(TaskQueue* task_queue);
|
| void Unthrottle(TaskQueue* task_queue);
|
|
|
| - const ThrottledTimeDomain* time_domain() const { return time_domain_.get(); }
|
| + const VirtualTimeDomain* time_domain() const { return time_domain_.get(); }
|
|
|
| static base::TimeTicks ThrottledRunTime(base::TimeTicks unthrottled_runtime);
|
|
|
| @@ -52,7 +52,7 @@
|
| RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED
|
| base::TickClock* tick_clock_; // NOT OWNED
|
| const char* tracing_category_; // NOT OWNED
|
| - scoped_ptr<ThrottledTimeDomain> time_domain_;
|
| + scoped_ptr<VirtualTimeDomain> time_domain_;
|
|
|
| CancelableClosureHolder suspend_timers_when_backgrounded_closure_;
|
| base::TimeTicks pending_pump_throttled_tasks_runtime_;
|
|
|