| Index: cc/trees/single_thread_proxy.cc
|
| diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc
|
| index 4031509a8ffdd7b527c44a5260336e5dcdc2e0e1..08b55feb26ea7e15182c3933bf6aabf578812d8e 100644
|
| --- a/cc/trees/single_thread_proxy.cc
|
| +++ b/cc/trees/single_thread_proxy.cc
|
| @@ -323,13 +323,12 @@ void SingleThreadProxy::SetNeedsCommitOnImplThread() {
|
| }
|
|
|
| void SingleThreadProxy::PostAnimationEventsToMainThreadOnImplThread(
|
| - scoped_ptr<AnimationEventsVector> events,
|
| - base::Time wall_clock_time) {
|
| + scoped_ptr<AnimationEventsVector> events) {
|
| TRACE_EVENT0(
|
| "cc", "SingleThreadProxy::PostAnimationEventsToMainThreadOnImplThread");
|
| DCHECK(Proxy::IsImplThread());
|
| DebugScopedSetMainThread main(this);
|
| - layer_tree_host_->SetAnimationEvents(events.Pass(), wall_clock_time);
|
| + layer_tree_host_->SetAnimationEvents(events.Pass());
|
| }
|
|
|
| bool SingleThreadProxy::ReduceContentsTextureMemoryOnImplThread(
|
|
|