| Index: webkit/compositor_bindings/WebLayerImpl.cpp
|
| diff --git a/webkit/compositor_bindings/WebLayerImpl.cpp b/webkit/compositor_bindings/WebLayerImpl.cpp
|
| index a1c6e3ec1f3e345f81bf9360b4ace03afe276173..27c566de3cb89408d6296c4dd4f31583a4cd4809 100644
|
| --- a/webkit/compositor_bindings/WebLayerImpl.cpp
|
| +++ b/webkit/compositor_bindings/WebLayerImpl.cpp
|
| @@ -338,6 +338,16 @@ void WebLayerImpl::setForceRenderSurface(bool forceRenderSurface)
|
| m_layer->setForceRenderSurface(forceRenderSurface);
|
| }
|
|
|
| +void WebLayerImpl::setDeferUpdates(bool deferUpdates)
|
| +{
|
| + m_layer->setDeferUpdates(deferUpdates);
|
| +}
|
| +
|
| +bool WebLayerImpl::deferUpdates()
|
| +{
|
| + return m_layer->deferUpdates();
|
| +}
|
| +
|
| void WebLayerImpl::setScrollPosition(WebPoint position)
|
| {
|
| m_layer->setScrollPosition(convert(position));
|
|
|