| Index: cc/resources/bitmap_skpicture_content_layer_updater.h
|
| diff --git a/cc/resources/bitmap_skpicture_content_layer_updater.h b/cc/resources/bitmap_skpicture_content_layer_updater.h
|
| index 07bef128a2410350903a9be81819524490c27c27..334e556015b259de93a097f79f75a2dfc4b9ce63 100644
|
| --- a/cc/resources/bitmap_skpicture_content_layer_updater.h
|
| +++ b/cc/resources/bitmap_skpicture_content_layer_updater.h
|
| @@ -23,8 +23,7 @@ class BitmapSkPictureContentLayerUpdater : public SkPictureContentLayerUpdater {
|
| virtual void Update(ResourceUpdateQueue* queue,
|
| gfx::Rect source_rect,
|
| gfx::Vector2d dest_offset,
|
| - bool partial_update,
|
| - RenderingStats* stats) OVERRIDE;
|
| + bool partial_update) OVERRIDE;
|
|
|
| private:
|
| SkBitmap bitmap_;
|
| @@ -34,16 +33,18 @@ class BitmapSkPictureContentLayerUpdater : public SkPictureContentLayerUpdater {
|
| };
|
|
|
| static scoped_refptr<BitmapSkPictureContentLayerUpdater> Create(
|
| - scoped_ptr<LayerPainter> painter);
|
| + scoped_ptr<LayerPainter> painter,
|
| + RenderingStatsInstrumentation* stats_instrumentation);
|
|
|
| virtual scoped_ptr<LayerUpdater::Resource> CreateResource(
|
| PrioritizedResourceManager* manager) OVERRIDE;
|
| void PaintContentsRect(SkCanvas* canvas,
|
| - gfx::Rect source_rect,
|
| - RenderingStats* stats);
|
| + gfx::Rect source_rect);
|
|
|
| private:
|
| - explicit BitmapSkPictureContentLayerUpdater(scoped_ptr<LayerPainter> painter);
|
| + BitmapSkPictureContentLayerUpdater(
|
| + scoped_ptr<LayerPainter> painter,
|
| + RenderingStatsInstrumentation* stats_instrumentation);
|
| virtual ~BitmapSkPictureContentLayerUpdater();
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BitmapSkPictureContentLayerUpdater);
|
|
|