| Index: cc/layers/picture_image_layer.cc
|
| diff --git a/cc/layers/picture_image_layer.cc b/cc/layers/picture_image_layer.cc
|
| index a65ac8c9318c498a22ca904a00edc1ab5a7994ee..622a8579d74db83459f17ffa7d59966fc6538a9f 100644
|
| --- a/cc/layers/picture_image_layer.cc
|
| +++ b/cc/layers/picture_image_layer.cc
|
| @@ -43,6 +43,7 @@ void PictureImageLayer::SetBitmap(const SkBitmap& bitmap) {
|
| void PictureImageLayer::PaintContents(
|
| SkCanvas* canvas,
|
| const gfx::Rect& clip,
|
| + bool can_paint_lcd_text,
|
| gfx::RectF* opaque,
|
| ContentLayerClient::GraphicsContextStatus gc_status) {
|
| if (!bitmap_.width() || !bitmap_.height())
|
| @@ -62,6 +63,10 @@ void PictureImageLayer::PaintContents(
|
| canvas->drawBitmap(bitmap_, 0, 0, &paint);
|
| }
|
|
|
| +bool PictureImageLayer::PaintsLCDText() const {
|
| + return false;
|
| +}
|
| +
|
| bool PictureImageLayer::FillsBoundsCompletely() const {
|
| // PictureImageLayer will always paint to the entire layer bounds.
|
| return true;
|
|
|