| Index: trunk/src/cc/trees/single_thread_proxy.cc
|
| ===================================================================
|
| --- trunk/src/cc/trees/single_thread_proxy.cc (revision 245527)
|
| +++ trunk/src/cc/trees/single_thread_proxy.cc (working copy)
|
| @@ -175,11 +175,16 @@
|
| return renderer_capabilities_for_main_thread_;
|
| }
|
|
|
| -void SingleThreadProxy::SetNeedsUpdateLayers() {
|
| +void SingleThreadProxy::SetNeedsAnimate() {
|
| DCHECK(Proxy::IsMainThread());
|
| client_->ScheduleAnimation();
|
| }
|
|
|
| +void SingleThreadProxy::SetNeedsUpdateLayers() {
|
| + DCHECK(Proxy::IsMainThread());
|
| + client_->ScheduleComposite();
|
| +}
|
| +
|
| void SingleThreadProxy::DoCommit(scoped_ptr<ResourceUpdateQueue> queue) {
|
| DCHECK(Proxy::IsMainThread());
|
| // Commit immediately.
|
|
|