| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/child/scheduler/worker_scheduler_impl.h" | 5 #include "content/child/scheduler/worker_scheduler_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop/message_loop_proxy.h" | 8 #include "base/message_loop/message_loop_proxy.h" |
| 9 #include "base/trace_event/trace_event.h" | 9 #include "base/trace_event/trace_event.h" |
| 10 #include "base/trace_event/trace_event_argument.h" | 10 #include "base/trace_event/trace_event_argument.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 DCHECK(initialized_); | 69 DCHECK(initialized_); |
| 70 helper_.RemoveTaskObserver(task_observer); | 70 helper_.RemoveTaskObserver(task_observer); |
| 71 } | 71 } |
| 72 | 72 |
| 73 void WorkerSchedulerImpl::Shutdown() { | 73 void WorkerSchedulerImpl::Shutdown() { |
| 74 DCHECK(initialized_); | 74 DCHECK(initialized_); |
| 75 helper_.Shutdown(); | 75 helper_.Shutdown(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 void WorkerSchedulerImpl::SetTimeSourceForTesting( | 78 void WorkerSchedulerImpl::SetTimeSourceForTesting( |
| 79 scoped_refptr<cc::TestNowSource> time_source) { | 79 scoped_ptr<TimeSource> time_source) { |
| 80 helper_.SetTimeSourceForTesting(time_source); | 80 helper_.SetTimeSourceForTesting(time_source.Pass()); |
| 81 } | 81 } |
| 82 | 82 |
| 83 void WorkerSchedulerImpl::SetWorkBatchSizeForTesting(size_t work_batch_size) { | 83 void WorkerSchedulerImpl::SetWorkBatchSizeForTesting(size_t work_batch_size) { |
| 84 helper_.SetWorkBatchSizeForTesting(work_batch_size); | 84 helper_.SetWorkBatchSizeForTesting(work_batch_size); |
| 85 } | 85 } |
| 86 | 86 |
| 87 bool WorkerSchedulerImpl::CanEnterLongIdlePeriod(base::TimeTicks, | 87 bool WorkerSchedulerImpl::CanEnterLongIdlePeriod(base::TimeTicks, |
| 88 base::TimeDelta*) { | 88 base::TimeDelta*) { |
| 89 return true; | 89 return true; |
| 90 } | 90 } |
| 91 | 91 |
| 92 base::TimeTicks WorkerSchedulerImpl::CurrentIdleTaskDeadlineForTesting() const { | 92 base::TimeTicks WorkerSchedulerImpl::CurrentIdleTaskDeadlineForTesting() const { |
| 93 base::TimeTicks deadline; | 93 base::TimeTicks deadline; |
| 94 helper_.CurrentIdleTaskDeadlineCallback(&deadline); | 94 helper_.CurrentIdleTaskDeadlineCallback(&deadline); |
| 95 return deadline; | 95 return deadline; |
| 96 } | 96 } |
| 97 | 97 |
| 98 } // namespace content | 98 } // namespace content |
| OLD | NEW |