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

Unified Diff: cc/resources/picture_layer_tiling_unittest.cc

Issue 793573006: Refactoring for merging ManagedTileState into Tile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix a nit Created 6 years 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
« no previous file with comments | « cc/resources/managed_tile_state.cc ('k') | cc/resources/raster_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/picture_layer_tiling_unittest.cc
diff --git a/cc/resources/picture_layer_tiling_unittest.cc b/cc/resources/picture_layer_tiling_unittest.cc
index 57063276f3950393d31106caa44e65ea1c5fe968..0a8934ea0b1675ec5dba7131e68cd03856fa7ca2 100644
--- a/cc/resources/picture_layer_tiling_unittest.cc
+++ b/cc/resources/picture_layer_tiling_unittest.cc
@@ -1145,7 +1145,7 @@ TEST(PictureLayerTilingTest, TilingRasterTileIteratorStaticViewport) {
// On the second iteration, mark everything as ready to draw (solid color).
if (i == 1) {
- ManagedTileState::DrawInfo& draw_info = last_tile->draw_info();
+ TileDrawInfo& draw_info = last_tile->draw_info();
draw_info.SetSolidColorForTesting(SK_ColorRED);
}
++it;
@@ -1181,7 +1181,7 @@ TEST(PictureLayerTilingTest, TilingRasterTileIteratorStaticViewport) {
// On the second iteration, mark everything as ready to draw (solid
// color).
if (i == 1) {
- ManagedTileState::DrawInfo& draw_info = last_tile->draw_info();
+ TileDrawInfo& draw_info = last_tile->draw_info();
draw_info.SetSolidColorForTesting(SK_ColorRED);
}
}
« no previous file with comments | « cc/resources/managed_tile_state.cc ('k') | cc/resources/raster_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698