| Index: cc/single_thread_proxy.cc
|
| diff --git a/cc/single_thread_proxy.cc b/cc/single_thread_proxy.cc
|
| index 657cc366230384c166af67f2182bbc63b6ffcff2..b732b372a58c01175bbe1f42c9be763198c8e0d0 100644
|
| --- a/cc/single_thread_proxy.cc
|
| +++ b/cc/single_thread_proxy.cc
|
| @@ -78,6 +78,11 @@ void SingleThreadProxy::startPageScaleAnimation(gfx::Vector2d targetOffset, bool
|
| m_layerTreeHostImpl->startPageScaleAnimation(targetOffset, useAnchor, scale, base::TimeTicks::Now(), duration);
|
| }
|
|
|
| +void SingleThreadProxy::programmaticScroll(gfx::Vector2d targetOffset) OVERRIDE
|
| +{
|
| + m_layerTreeHostImpl->programmaticScroll(targetOffset);
|
| +}
|
| +
|
| void SingleThreadProxy::finishAllRendering()
|
| {
|
| DCHECK(Proxy::isMainThread());
|
|
|