| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef COMPONENTS_SCHEDULER_CHILD_WEBTHREAD_IMPL_FOR_WORKER_SCHEDULER_H_ | 5 #ifndef COMPONENTS_SCHEDULER_CHILD_WEBTHREAD_IMPL_FOR_WORKER_SCHEDULER_H_ |
| 6 #define COMPONENTS_SCHEDULER_CHILD_WEBTHREAD_IMPL_FOR_WORKER_SCHEDULER_H_ | 6 #define COMPONENTS_SCHEDULER_CHILD_WEBTHREAD_IMPL_FOR_WORKER_SCHEDULER_H_ |
| 7 | 7 |
| 8 #include "components/scheduler/child/task_queue_manager.h" | 8 #include "components/scheduler/base/task_queue_manager.h" |
| 9 #include "components/scheduler/child/webthread_base.h" | 9 #include "components/scheduler/child/webthread_base.h" |
| 10 | 10 |
| 11 namespace base { | 11 namespace base { |
| 12 class WaitableEvent; | 12 class WaitableEvent; |
| 13 }; | 13 }; |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 class WebScheduler; | 16 class WebScheduler; |
| 17 }; | 17 }; |
| 18 | 18 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 scoped_refptr<base::SingleThreadTaskRunner> thread_task_runner_; | 57 scoped_refptr<base::SingleThreadTaskRunner> thread_task_runner_; |
| 58 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; | 58 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 59 scoped_refptr<scheduler::SingleThreadIdleTaskRunner> idle_task_runner_; | 59 scoped_refptr<scheduler::SingleThreadIdleTaskRunner> idle_task_runner_; |
| 60 scoped_refptr<SchedulerTaskRunnerDelegate> task_runner_delegate_; | 60 scoped_refptr<SchedulerTaskRunnerDelegate> task_runner_delegate_; |
| 61 scoped_ptr<WebTaskRunnerImpl> web_task_runner_; | 61 scoped_ptr<WebTaskRunnerImpl> web_task_runner_; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace scheduler | 64 } // namespace scheduler |
| 65 | 65 |
| 66 #endif // COMPONENTS_SCHEDULER_CHILD_WEBTHREAD_IMPL_FOR_WORKER_SCHEDULER_H_ | 66 #endif // COMPONENTS_SCHEDULER_CHILD_WEBTHREAD_IMPL_FOR_WORKER_SCHEDULER_H_ |
| OLD | NEW |