| Index: cc/playback/display_list_raster_source.h
|
| diff --git a/cc/playback/display_list_raster_source.h b/cc/playback/display_list_raster_source.h
|
| index 5599f59ad0c70602ccde595df0d50a81699e5f5f..361019cfa2633611b28d505c5c1c4f70751c7a81 100644
|
| --- a/cc/playback/display_list_raster_source.h
|
| +++ b/cc/playback/display_list_raster_source.h
|
| @@ -48,14 +48,16 @@ class CC_EXPORT DisplayListRasterSource
|
| virtual void PlaybackToCanvas(SkCanvas* canvas,
|
| const gfx::Rect& canvas_bitmap_rect,
|
| const gfx::Rect& canvas_playback_rect,
|
| - float contents_scale) const;
|
| + float contents_scale,
|
| + bool include_images) const;
|
|
|
| // Similar to above, except that the canvas passed here can (or was already)
|
| // rasterized into by another raster source. That is, it is not safe to clear
|
| // the canvas or discard its underlying memory.
|
| void PlaybackToSharedCanvas(SkCanvas* canvas,
|
| const gfx::Rect& canvas_rect,
|
| - float contents_scale) const;
|
| + float contents_scale,
|
| + bool include_images) const;
|
|
|
| // Returns whether the given rect at given scale is of solid color in
|
| // this raster source, as well as the solid color value.
|
|
|