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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 void NullRendererScheduler::WillBeginFrame(const cc::BeginFrameArgs& args) { | 63 void NullRendererScheduler::WillBeginFrame(const cc::BeginFrameArgs& args) { |
64 } | 64 } |
65 | 65 |
66 void NullRendererScheduler::DidCommitFrameToCompositor() { | 66 void NullRendererScheduler::DidCommitFrameToCompositor() { |
67 } | 67 } |
68 | 68 |
69 void NullRendererScheduler::DidReceiveInputEvent() { | 69 void NullRendererScheduler::DidReceiveInputEvent() { |
70 } | 70 } |
71 | 71 |
| 72 void NullRendererScheduler::DidAnimate() { |
| 73 } |
| 74 |
72 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { | 75 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { |
73 return false; | 76 return false; |
74 } | 77 } |
75 | 78 |
76 void NullRendererScheduler::Shutdown() { | 79 void NullRendererScheduler::Shutdown() { |
77 } | 80 } |
78 | 81 |
79 } // namespace content | 82 } // namespace content |
OLD | NEW |