| Index: webkit/compositor_bindings/web_layer_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_layer_impl.cc b/webkit/compositor_bindings/web_layer_impl.cc
|
| index 3e44860fb24cd14ceb308f1b4b93db30dd7ff35f..fff10ac5b9cc823acf2c9327dae08b95c4e75ade 100644
|
| --- a/webkit/compositor_bindings/web_layer_impl.cc
|
| +++ b/webkit/compositor_bindings/web_layer_impl.cc
|
| @@ -340,6 +340,16 @@ WebSize WebLayerImpl::maxScrollPosition() const
|
| return m_layer->maxScrollOffset();
|
| }
|
|
|
| +void WebLayerImpl::setVisibleScrollArea(WebSize scrollArea)
|
| +{
|
| + m_layer->setVisibleScrollArea(scrollArea);
|
| +}
|
| +
|
| +WebSize WebLayerImpl::visibleScrollArea() const
|
| +{
|
| + return m_layer->visibleScrollArea();
|
| +}
|
| +
|
| void WebLayerImpl::setScrollable(bool scrollable)
|
| {
|
| m_layer->setScrollable(scrollable);
|
|
|