Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Unified Diff: cc/layers/tiled_layer_impl.cc

Issue 304203005: Remove const LayerImpl* from QuadSink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onlyQuadSink
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/layers/tiled_layer_impl.cc
diff --git a/cc/layers/tiled_layer_impl.cc b/cc/layers/tiled_layer_impl.cc
index a510883d81584c4ab5c43a3ecf99e1d3e2aa029a..0b449aec7abf5e0b29a8e64a679413807b59d222 100644
--- a/cc/layers/tiled_layer_impl.cc
+++ b/cc/layers/tiled_layer_impl.cc
@@ -209,7 +209,7 @@ void TiledLayerImpl::AppendQuads(QuadSink* quad_sink,
continue;
gfx::Rect visible_tile_rect =
- quad_sink->UnoccludedContentRect(tile_rect, draw_transform());
+ quad_sink->UnoccludedContentRect(this, tile_rect, draw_transform());
if (visible_tile_rect.IsEmpty())
continue;

Powered by Google App Engine
This is Rietveld 408576698