| Index: cc/trees/thread_proxy.cc
|
| diff --git a/cc/trees/thread_proxy.cc b/cc/trees/thread_proxy.cc
|
| index a7c408613f069af52e3e3ec831b78c6c8343616a..b307c9e5cbfe91e1068bf7ace9fbd04be8ad174f 100644
|
| --- a/cc/trees/thread_proxy.cc
|
| +++ b/cc/trees/thread_proxy.cc
|
| @@ -362,10 +362,10 @@ void ThreadProxy::SetNeedsBeginFrameOnImplThread(bool enable) {
|
| layer_tree_host_impl_->SetNeedsBeginFrame(enable);
|
| }
|
|
|
| -void ThreadProxy::BeginFrameOnImplThread(base::TimeTicks frame_time) {
|
| +void ThreadProxy::BeginFrameOnImplThread(const BeginFrameArgs& args) {
|
| DCHECK(IsImplThread());
|
| TRACE_EVENT0("cc", "ThreadProxy::BeginFrameOnImplThread");
|
| - scheduler_on_impl_thread_->BeginFrame(frame_time);
|
| + scheduler_on_impl_thread_->BeginFrame(args);
|
| }
|
|
|
| void ThreadProxy::OnCanDrawStateChanged(bool can_draw) {
|
|
|