| Index: cc/playback/raster_source.h
|
| diff --git a/cc/playback/raster_source.h b/cc/playback/raster_source.h
|
| index c50c4a0f626a4bdf2e38864d3d910ccf65822b0e..f3db04d5d1bfeec084ea816103dd8ce3eaff5e78 100644
|
| --- a/cc/playback/raster_source.h
|
| +++ b/cc/playback/raster_source.h
|
| @@ -41,7 +41,10 @@ class CC_EXPORT RasterSource : public base::RefCountedThreadSafe<RasterSource> {
|
|
|
| static scoped_refptr<RasterSource> CreateFromRecordingSource(
|
| const RecordingSource* other,
|
| - bool can_use_lcd_text);
|
| + bool can_use_lcd_text,
|
| + const gfx::Rect& recorded_viewport,
|
| + const scoped_refptr<DisplayItemList>& display_list,
|
| + const size_t& painter_reported_memory_usage);
|
|
|
| // TODO(trchen): Deprecated.
|
| void PlaybackToCanvas(SkCanvas* canvas,
|
| @@ -121,7 +124,11 @@ class CC_EXPORT RasterSource : public base::RefCountedThreadSafe<RasterSource> {
|
| protected:
|
| friend class base::RefCountedThreadSafe<RasterSource>;
|
|
|
| - RasterSource(const RecordingSource* other, bool can_use_lcd_text);
|
| + RasterSource(const RecordingSource* other,
|
| + bool can_use_lcd_text,
|
| + const gfx::Rect& recorded_viewport,
|
| + const scoped_refptr<DisplayItemList>& display_list,
|
| + const size_t& painter_reported_memory_usage);
|
| RasterSource(const RasterSource* other, bool can_use_lcd_text);
|
| virtual ~RasterSource();
|
|
|
|
|