| Index: cc/resources/caching_bitmap_content_layer_updater.cc
|
| diff --git a/cc/resources/caching_bitmap_content_layer_updater.cc b/cc/resources/caching_bitmap_content_layer_updater.cc
|
| index 78f60976a8433317b2eae95a3dd3f3be807d3bb5..42e462b749d20942c73c218fbcd570530fec74a4 100644
|
| --- a/cc/resources/caching_bitmap_content_layer_updater.cc
|
| +++ b/cc/resources/caching_bitmap_content_layer_updater.cc
|
| @@ -11,14 +11,19 @@
|
| namespace cc {
|
|
|
| scoped_refptr<CachingBitmapContentLayerUpdater>
|
| -CachingBitmapContentLayerUpdater::Create(scoped_ptr<LayerPainter> painter) {
|
| +CachingBitmapContentLayerUpdater::Create(
|
| + scoped_ptr<LayerPainter> painter,
|
| + RenderingStatsInstrumentation* stats_instrumentation) {
|
| return make_scoped_refptr(
|
| - new CachingBitmapContentLayerUpdater(painter.Pass()));
|
| + new CachingBitmapContentLayerUpdater(painter.Pass(),
|
| + stats_instrumentation));
|
| }
|
|
|
| CachingBitmapContentLayerUpdater::CachingBitmapContentLayerUpdater(
|
| - scoped_ptr<LayerPainter> painter)
|
| - : BitmapContentLayerUpdater(painter.Pass()), pixels_did_change_(false) {}
|
| + scoped_ptr<LayerPainter> painter,
|
| + RenderingStatsInstrumentation* stats_instrumentation)
|
| + : BitmapContentLayerUpdater(painter.Pass(), stats_instrumentation),
|
| + pixels_did_change_(false) {}
|
|
|
| CachingBitmapContentLayerUpdater::~CachingBitmapContentLayerUpdater() {}
|
|
|
|
|