| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 void NullRendererScheduler::DidCommitFrameToCompositor() { | 71 void NullRendererScheduler::DidCommitFrameToCompositor() { |
| 72 } | 72 } |
| 73 | 73 |
| 74 void NullRendererScheduler::DidReceiveInputEventOnCompositorThread( | 74 void NullRendererScheduler::DidReceiveInputEventOnCompositorThread( |
| 75 blink::WebInputEvent::Type type) { | 75 blink::WebInputEvent::Type type) { |
| 76 } | 76 } |
| 77 | 77 |
| 78 void NullRendererScheduler::DidAnimateForInputOnCompositorThread() { | 78 void NullRendererScheduler::DidAnimateForInputOnCompositorThread() { |
| 79 } | 79 } |
| 80 | 80 |
| 81 bool NullRendererScheduler::IsHighPriorityWorkAnticipated() { | |
| 82 return false; | |
| 83 } | |
| 84 | |
| 85 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { | 81 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { |
| 86 return false; | 82 return false; |
| 87 } | 83 } |
| 88 | 84 |
| 89 void NullRendererScheduler::Shutdown() { | 85 void NullRendererScheduler::Shutdown() { |
| 90 } | 86 } |
| 91 | 87 |
| 92 } // namespace content | 88 } // namespace content |
| OLD | NEW |