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/renderer/scheduler/null_renderer_scheduler.h" | 5 #include "content/renderer/scheduler/null_renderer_scheduler.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 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 } | 79 } |
80 | 80 |
81 bool NullRendererScheduler::IsHighPriorityWorkAnticipated() { | 81 bool NullRendererScheduler::IsHighPriorityWorkAnticipated() { |
82 return false; | 82 return false; |
83 } | 83 } |
84 | 84 |
85 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { | 85 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { |
86 return false; | 86 return false; |
87 } | 87 } |
88 | 88 |
| 89 void NullRendererScheduler::AddTaskObserver( |
| 90 base::MessageLoop::TaskObserver* task_observer) { |
| 91 base::MessageLoop::current()->AddTaskObserver(task_observer); |
| 92 } |
| 93 |
| 94 void NullRendererScheduler::RemoveTaskObserver( |
| 95 base::MessageLoop::TaskObserver* task_observer) { |
| 96 base::MessageLoop::current()->RemoveTaskObserver(task_observer); |
| 97 } |
| 98 |
89 void NullRendererScheduler::Shutdown() { | 99 void NullRendererScheduler::Shutdown() { |
90 } | 100 } |
91 | 101 |
92 } // namespace content | 102 } // namespace content |
OLD | NEW |