diff options
Diffstat (limited to 'cc/layers/picture_layer.cc')
-rw-r--r-- | cc/layers/picture_layer.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cc/layers/picture_layer.cc b/cc/layers/picture_layer.cc index 32724d7..b758f6d 100644 --- a/cc/layers/picture_layer.cc +++ b/cc/layers/picture_layer.cc @@ -68,7 +68,8 @@ void PictureLayer::SetNeedsDisplayRect(const gfx::RectF& layer_rect) { } void PictureLayer::Update(ResourceUpdateQueue*, - const OcclusionTracker*) { + const OcclusionTracker*, + RenderingStats* stats) { // Do not early-out of this function so that PicturePile::Update has a chance // to record pictures due to changing visibility of this layer. @@ -86,7 +87,7 @@ void PictureLayer::Update(ResourceUpdateQueue*, background_color(), pile_invalidation_, visible_layer_rect, - rendering_stats_instrumentation()); + stats); } void PictureLayer::SetIsMask(bool is_mask) { |