| Index: cc/resources/tile_manager.h
|
| diff --git a/cc/resources/tile_manager.h b/cc/resources/tile_manager.h
|
| index 8d19520699b4c5edd713e9ab94763604795f1944..a89e6f9239bac66021c079c787c0d924eec34ff0 100644
|
| --- a/cc/resources/tile_manager.h
|
| +++ b/cc/resources/tile_manager.h
|
| @@ -106,7 +106,12 @@ class CC_EXPORT TileManager : public RasterizerClient,
|
| size_t scheduled_raster_task_limit);
|
| ~TileManager() override;
|
|
|
| - void ManageTiles(const GlobalStateThatImpactsTilePriority& state);
|
| + // Assigns tile memory and schedules work to prepare tiles for drawing.
|
| + // - Runs client_->NotifyReadyToActivate() when all tiles required for
|
| + // activation are prepared, or failed to prepare due to OOM.
|
| + // - Runs client_->NotifyReadyToDraw() when all tiles required draw are
|
| + // prepared, or failed to prepare due to OOM.
|
| + void PrepareTiles(const GlobalStateThatImpactsTilePriority& state);
|
|
|
| void UpdateVisibleTiles();
|
|
|
|
|