Index: cc/resources/picture_pile.cc |
diff --git a/cc/resources/picture_pile.cc b/cc/resources/picture_pile.cc |
index 85a2e9b2d7f5ccd87347784490b52d728a4fd11c..bbb8f3dd44caa45c00240386c9021d7dab9413dd 100644 |
--- a/cc/resources/picture_pile.cc |
+++ b/cc/resources/picture_pile.cc |
@@ -36,7 +36,7 @@ void PicturePile::Update( |
SkColor background_color, |
const Region& invalidation, |
gfx::Rect visible_layer_rect, |
- RenderingStats* stats) { |
+ RenderingStatsInstrumentation* stats_instrumentation) { |
background_color_ = background_color; |
gfx::Rect interest_rect = visible_layer_rect; |
@@ -103,7 +103,7 @@ void PicturePile::Update( |
for (PictureList::iterator pic = pic_list.begin(); |
pic != pic_list.end(); ++pic) { |
if (!(*pic)->HasRecording()) { |
- (*pic)->Record(painter, stats, tile_grid_info_); |
+ (*pic)->Record(painter, stats_instrumentation, tile_grid_info_); |
(*pic)->CloneForDrawing(num_raster_threads_); |
} |
} |