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

Unified Diff: cc/test/fake_picture_layer_tiling_client.cc

Issue 1362663002: cc: Remove PicturePile and PicturePileImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and update Created 5 years, 3 months 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/test/fake_picture_layer_tiling_client.h ('k') | cc/test/fake_picture_pile.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_picture_layer_tiling_client.cc
diff --git a/cc/test/fake_picture_layer_tiling_client.cc b/cc/test/fake_picture_layer_tiling_client.cc
index 59ea9266ea24e478d6bb4fd381bb86af3d9956cd..52849077a43ec79bee055dec5209fafdc1c92a3d 100644
--- a/cc/test/fake_picture_layer_tiling_client.cc
+++ b/cc/test/fake_picture_layer_tiling_client.cc
@@ -7,18 +7,17 @@
#include <limits>
#include "base/thread_task_runner_handle.h"
-#include "cc/test/fake_picture_pile_impl.h"
+#include "cc/test/fake_display_list_raster_source.h"
#include "cc/test/fake_tile_manager.h"
namespace cc {
FakePictureLayerTilingClient::FakePictureLayerTilingClient()
: tile_manager_(new FakeTileManager(&tile_manager_client_)),
- pile_(FakePicturePileImpl::CreateInfiniteFilledPile()),
+ raster_source_(FakeDisplayListRasterSource::CreateInfiniteFilled()),
twin_set_(nullptr),
twin_tiling_(nullptr),
- has_valid_tile_priorities_(true) {
-}
+ has_valid_tile_priorities_(true) {}
FakePictureLayerTilingClient::FakePictureLayerTilingClient(
ResourceProvider* resource_provider)
@@ -28,7 +27,7 @@ FakePictureLayerTilingClient::FakePictureLayerTilingClient(
GL_TEXTURE_2D)),
tile_manager_(
new FakeTileManager(&tile_manager_client_, resource_pool_.get())),
- pile_(FakePicturePileImpl::CreateInfiniteFilledPile()),
+ raster_source_(FakeDisplayListRasterSource::CreateInfiniteFilled()),
twin_set_(nullptr),
twin_tiling_(nullptr),
has_valid_tile_priorities_(true) {}
« no previous file with comments | « cc/test/fake_picture_layer_tiling_client.h ('k') | cc/test/fake_picture_pile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698