| Index: webkit/renderer/compositor_bindings/web_content_layer_impl.h
|
| diff --git a/webkit/renderer/compositor_bindings/web_content_layer_impl.h b/webkit/renderer/compositor_bindings/web_content_layer_impl.h
|
| index 369af104b41157577c3536b17a0e4efdf055bdc4..825b6afba6468d578490bdd1bbfded8afb7f2ebd 100644
|
| --- a/webkit/renderer/compositor_bindings/web_content_layer_impl.h
|
| +++ b/webkit/renderer/compositor_bindings/web_content_layer_impl.h
|
| @@ -38,10 +38,11 @@ class WebContentLayerImpl : public blink::WebContentLayer,
|
| // ContentLayerClient implementation.
|
| virtual void PaintContents(SkCanvas* canvas,
|
| const gfx::Rect& clip,
|
| + bool can_paint_lcd_text,
|
| gfx::RectF* opaque,
|
| ContentLayerClient::GraphicsContextStatus
|
| graphics_context_status) OVERRIDE;
|
| - virtual void DidChangeLayerCanUseLCDText() OVERRIDE;
|
| + virtual bool PaintsLCDText() const OVERRIDE;
|
| virtual bool FillsBoundsCompletely() const OVERRIDE;
|
|
|
| scoped_ptr<WebLayerImpl> layer_;
|
| @@ -49,9 +50,6 @@ class WebContentLayerImpl : public blink::WebContentLayer,
|
| bool draws_content_;
|
|
|
| private:
|
| - bool can_use_lcd_text_;
|
| - bool ignore_lcd_text_change_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(WebContentLayerImpl);
|
| };
|
|
|
|
|