Index: cc/tiles/picture_layer_tiling_perftest.cc |
diff --git a/cc/tiles/picture_layer_tiling_perftest.cc b/cc/tiles/picture_layer_tiling_perftest.cc |
index 8a169bc282b2339f99fed21d2367f7189b80df15..f612f39ca4ee3267cd12ca0131989b1af0559132 100644 |
--- a/cc/tiles/picture_layer_tiling_perftest.cc |
+++ b/cc/tiles/picture_layer_tiling_perftest.cc |
@@ -5,10 +5,10 @@ |
#include "cc/debug/lap_timer.h" |
#include "cc/resources/resource_provider.h" |
#include "cc/resources/scoped_resource.h" |
-#include "cc/test/fake_display_list_raster_source.h" |
#include "cc/test/fake_output_surface.h" |
#include "cc/test/fake_output_surface_client.h" |
#include "cc/test/fake_picture_layer_tiling_client.h" |
+#include "cc/test/fake_raster_source.h" |
#include "cc/test/fake_resource_provider.h" |
#include "cc/test/test_context_provider.h" |
#include "cc/test/test_shared_bitmap_manager.h" |
@@ -44,9 +44,8 @@ class PictureLayerTilingPerfTest : public testing::Test { |
void SetUp() override { |
LayerTreeSettings defaults; |
picture_layer_tiling_client_.SetTileSize(gfx::Size(256, 256)); |
- scoped_refptr<FakeDisplayListRasterSource> raster_source = |
- FakeDisplayListRasterSource::CreateFilled( |
- gfx::Size(256 * 50, 256 * 50)); |
+ scoped_refptr<FakeRasterSource> raster_source = |
+ FakeRasterSource::CreateFilled(gfx::Size(256 * 50, 256 * 50)); |
picture_layer_tiling_ = PictureLayerTiling::Create( |
PENDING_TREE, 1.f, raster_source, &picture_layer_tiling_client_, |
defaults.tiling_interest_area_padding, |