| Index: cc/trees/layer_tree_host_pixeltest_on_demand_raster.cc
|
| diff --git a/cc/trees/layer_tree_host_pixeltest_on_demand_raster.cc b/cc/trees/layer_tree_host_pixeltest_on_demand_raster.cc
|
| index 5bc2f318a906df48f45b91d8d61bbb003bef7873..b8b4962cb8e90c22ce447d655973b295184bba54 100644
|
| --- a/cc/trees/layer_tree_host_pixeltest_on_demand_raster.cc
|
| +++ b/cc/trees/layer_tree_host_pixeltest_on_demand_raster.cc
|
| @@ -60,13 +60,14 @@ class BlueYellowLayerClient : public ContentLayerClient {
|
| explicit BlueYellowLayerClient(gfx::Rect layer_rect)
|
| : layer_rect_(layer_rect) {}
|
|
|
| - virtual void DidChangeLayerCanUseLCDText() OVERRIDE { }
|
| + virtual bool PaintsLCDText() const OVERRIDE { return false; }
|
|
|
| virtual bool FillsBoundsCompletely() const OVERRIDE { return false; }
|
|
|
| virtual void PaintContents(
|
| SkCanvas* canvas,
|
| const gfx::Rect& clip,
|
| + bool can_paint_lcd_text,
|
| gfx::RectF* opaque,
|
| ContentLayerClient::GraphicsContextStatus gc_status) OVERRIDE {
|
| *opaque = gfx::RectF(layer_rect_.width(), layer_rect_.height());
|
|
|