| Index: cc/resources/caching_bitmap_content_layer_updater.h
|
| diff --git a/cc/resources/caching_bitmap_content_layer_updater.h b/cc/resources/caching_bitmap_content_layer_updater.h
|
| index 420d6d5f6388cda6314366919356f5b8caebc96d..657ea565402647bb1832c35c2d7e4c08ad2db663 100644
|
| --- a/cc/resources/caching_bitmap_content_layer_updater.h
|
| +++ b/cc/resources/caching_bitmap_content_layer_updater.h
|
| @@ -14,7 +14,8 @@ namespace cc {
|
| class CachingBitmapContentLayerUpdater : public BitmapContentLayerUpdater {
|
| public:
|
| static scoped_refptr<CachingBitmapContentLayerUpdater> Create(
|
| - scoped_ptr<LayerPainter>);
|
| + scoped_ptr<LayerPainter>,
|
| + RenderingStatsInstrumentation* stats_instrumentation);
|
|
|
| virtual void PrepareToUpdate(gfx::Rect content_rect,
|
| gfx::Size tile_size,
|
| @@ -28,7 +29,9 @@ class CachingBitmapContentLayerUpdater : public BitmapContentLayerUpdater {
|
| }
|
|
|
| private:
|
| - explicit CachingBitmapContentLayerUpdater(scoped_ptr<LayerPainter> painter);
|
| + CachingBitmapContentLayerUpdater(
|
| + scoped_ptr<LayerPainter> painter,
|
| + RenderingStatsInstrumentation* stats_instrumentation);
|
| virtual ~CachingBitmapContentLayerUpdater();
|
|
|
| bool pixels_did_change_;
|
|
|