| Index: webkit/compositor_bindings/WebContentLayerImpl.cpp
|
| diff --git a/webkit/compositor_bindings/WebContentLayerImpl.cpp b/webkit/compositor_bindings/WebContentLayerImpl.cpp
|
| index 05775a3f0c33fbd1e56628f7f837ba1f62520c5c..2705ff6ddd93eed426cec1d83bc1980507b79cb9 100644
|
| --- a/webkit/compositor_bindings/WebContentLayerImpl.cpp
|
| +++ b/webkit/compositor_bindings/WebContentLayerImpl.cpp
|
| @@ -44,9 +44,14 @@ void WebContentLayerImpl::setDoubleSided(bool doubleSided)
|
| m_layer->layer()->setDoubleSided(doubleSided);
|
| }
|
|
|
| -void WebContentLayerImpl::setContentsScale(float scale)
|
| +void WebContentLayerImpl::setBoundsContainPageScale(bool boundsContainPageScale)
|
| {
|
| - m_layer->layer()->setContentsScale(scale);
|
| + return m_layer->layer()->setBoundsContainPageScale(boundsContainPageScale);
|
| +}
|
| +
|
| +bool WebContentLayerImpl::boundsContainPageScale() const
|
| +{
|
| + return m_layer->layer()->boundsContainPageScale();
|
| }
|
|
|
| void WebContentLayerImpl::setUseLCDText(bool enable)
|
|
|