diff options
Diffstat (limited to 'cc/picture_layer.cc')
-rw-r--r-- | cc/picture_layer.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cc/picture_layer.cc b/cc/picture_layer.cc index 348d952..cfa90ab 100644 --- a/cc/picture_layer.cc +++ b/cc/picture_layer.cc @@ -79,7 +79,11 @@ void PictureLayer::update(ResourceUpdateQueue&, const OcclusionTracker*, gfx::Rect visible_layer_rect = gfx::ToEnclosingRect( gfx::ScaleRect(visibleContentRect(), 1.f / contentsScaleX())); devtools_instrumentation::ScopedPaintLayer paint_layer(id()); - pile_->Update(client_, pile_invalidation_, visible_layer_rect, stats); + pile_->Update(client_, + backgroundColor(), + pile_invalidation_, + visible_layer_rect, + stats); } void PictureLayer::setIsMask(bool is_mask) { |