| Index: webkit/compositor_bindings/web_content_layer_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_content_layer_impl.cc b/webkit/compositor_bindings/web_content_layer_impl.cc
|
| index 6f75ee2bfeb57c59e3f9de8cba31c5a3a553679d..14f9f40fac8d1500cb841de149297338924ac276 100644
|
| --- a/webkit/compositor_bindings/web_content_layer_impl.cc
|
| +++ b/webkit/compositor_bindings/web_content_layer_impl.cc
|
| @@ -72,9 +72,9 @@ void WebContentLayerImpl::setAutomaticallyComputeRasterScale(bool automatic)
|
| m_layer->layer()->setAutomaticallyComputeRasterScale(automatic);
|
| }
|
|
|
| +// TODO(alokp): Remove this function from WebContentLayer API.
|
| void WebContentLayerImpl::setUseLCDText(bool enable)
|
| {
|
| - m_layer->layer()->setUseLCDText(enable);
|
| }
|
|
|
| void WebContentLayerImpl::setDrawCheckerboardForMissingTiles(bool enable)
|
| @@ -91,7 +91,7 @@ void WebContentLayerImpl::paintContents(SkCanvas* canvas, const gfx::Rect& clip,
|
| m_client->paintContents(canvas,
|
| clip,
|
| #if WEBCONTENTLAYERCLIENT_HAS_CANPAINTLCDTEXT
|
| - m_layer->layer()->useLCDText(),
|
| + m_layer->layer()->canUseLCDText(),
|
| #endif // WEBCONTENTLAYERCLIENT_HAS_CANPAINTLCDTEXT
|
| webOpaque);
|
| opaque = webOpaque;
|
|
|