| Index: cc/resources/tile_manager.h
|
| diff --git a/cc/resources/tile_manager.h b/cc/resources/tile_manager.h
|
| index 83223b2e4f8514f0965e6fdfb2a8d3986f37e613..105d2d6ba6f59a3e8e2e479dda075b684d1f2e73 100644
|
| --- a/cc/resources/tile_manager.h
|
| +++ b/cc/resources/tile_manager.h
|
| @@ -38,10 +38,10 @@ class CC_EXPORT TileManagerClient {
|
| // Tile manager classifying tiles into a few basic
|
| // bins:
|
| enum TileManagerBin {
|
| - NOW_BIN = 0, // Needed ASAP.
|
| - SOON_BIN = 1, // Impl-side version of prepainting.
|
| - EVENTUALLY_BIN = 2, // Nice to have, if we've got memory and time.
|
| - NEVER_BIN = 3, // Dont bother.
|
| + NOW_BIN = 0, // Needed ASAP.
|
| + SOON_BIN = 1, // Impl-side version of prepainting.
|
| + EVENTUALLY_BIN = 2, // Nice to have, if we've got memory and time.
|
| + NEVER_BIN = 3, // Dont bother.
|
| NUM_BINS = 4
|
| // Be sure to update TileManagerBinAsValue when adding new fields.
|
| };
|
| @@ -120,7 +120,6 @@ class CC_EXPORT TileManager : public WorkerPoolClient {
|
| }
|
|
|
| private:
|
| -
|
| // Data that is passed to raster tasks.
|
| struct RasterTaskMetadata {
|
| bool prediction_benchmarking;
|
|
|