Index: cc/resources/picture_layer_tiling.h |
diff --git a/cc/resources/picture_layer_tiling.h b/cc/resources/picture_layer_tiling.h |
index 8ae68e1d67ab90c831437071295a612fbf458354..f0a6cd43179e9c7acb733ed24464026da64d8d05 100644 |
--- a/cc/resources/picture_layer_tiling.h |
+++ b/cc/resources/picture_layer_tiling.h |
@@ -243,8 +243,9 @@ class CC_EXPORT PictureLayerTiling { |
void SetLiveTilesRect(const gfx::Rect& live_tiles_rect); |
void VerifyLiveTilesRect(bool is_on_recycle_tree) const; |
Tile* CreateTile(int i, int j); |
- // Returns true if the Tile existed and was removed from the tiling. |
- bool RemoveTileAt(int i, int j); |
+ // Returns true if the Tile existed and was removed from the tiling. If true, |
+ // and |id| is not null, sets |id| to that of the removed Tile. |
+ bool RemoveTileAt(int i, int j, Tile::Id* id); |
bool TilingMatchesTileIndices(const PictureLayerTiling* twin) const; |
// Computes a skewport. The calculation extrapolates the last visible |