| Index: cc/resources/picture_layer_tiling.h
|
| diff --git a/cc/resources/picture_layer_tiling.h b/cc/resources/picture_layer_tiling.h
|
| index 3b60edd871964ff57084d2299c7cc1f2c6a98c9e..a12b1d2721924988da06a9a9421f8363283c2d08 100644
|
| --- a/cc/resources/picture_layer_tiling.h
|
| +++ b/cc/resources/picture_layer_tiling.h
|
| @@ -182,8 +182,8 @@ class CC_EXPORT PictureLayerTiling {
|
| UpdateTileAndTwinPriority(it->second.get());
|
| }
|
|
|
| - std::vector<scoped_refptr<Tile> > AllRefTilesForTesting() const {
|
| - std::vector<scoped_refptr<Tile> > all_tiles;
|
| + std::vector<scoped_refptr<Tile>> AllRefTilesForTesting() const {
|
| + std::vector<scoped_refptr<Tile>> all_tiles;
|
| for (TileMap::const_iterator it = tiles_.begin(); it != tiles_.end(); ++it)
|
| all_tiles.push_back(it->second);
|
| return all_tiles;
|
| @@ -296,7 +296,7 @@ class CC_EXPORT PictureLayerTiling {
|
| friend class TilingEvictionTileIterator;
|
|
|
| typedef std::pair<int, int> TileMapKey;
|
| - typedef base::hash_map<TileMapKey, scoped_refptr<Tile> > TileMap;
|
| + typedef base::hash_map<TileMapKey, scoped_refptr<Tile>> TileMap;
|
|
|
| PictureLayerTiling(float contents_scale,
|
| const gfx::Size& layer_bounds,
|
|
|